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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -208,16 +208,16 @@ public Object execute(VirtualFrame frame) {
208
208
} else {
209
209
PythonBuiltinBaseNodenode = factory.createNode();
210
210
if (nodeinstanceofPythonUnaryBuiltinNode) {
211
-
assertargumentsList.length == 1 : "mismatch in number of arguments for " + node.getClass().getSimpleName();
211
+
assertargumentsList.length == 1 : "mismatch in number of arguments for " + node.getClass().getName();
212
212
body = insert(newBuiltinUnaryCallNode((PythonUnaryBuiltinNode) node, argumentsList[0]));
0 commit comments