Skip to content

Commit 2f01c2e

Browse files
committed
Avoid NPE when dumping graphs
1 parent f3f5ec4 commit 2f01c2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/PythonBuiltinClassType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public enum PythonBuiltinClassType implements TruffleObject {
382382
Capsule("PyCapsule"),
383383

384384
// A marker for @Builtin that is not a class. Must always come last.
385-
nil(null);
385+
nil("nil");
386386

387387
private static class Flags {
388388

0 commit comments

Comments
 (0)