You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/function/BuiltinFunctionRootNode.java
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ public BuiltinVarArgsCallNode(PythonVarargsBuiltinNode node, PNode arg1, PNode a
132
132
this.node = node;
133
133
this.arg1 = arg1;
134
134
this.arg2 = arg2;
135
-
this.arg2 = arg3;
135
+
this.arg3 = arg3;
136
136
}
137
137
138
138
@Override
@@ -204,17 +204,22 @@ public Object execute(VirtualFrame frame) {
0 commit comments