We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de86d0 commit d3fb002Copy full SHA for d3fb002
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/PythonBuiltinClassType.java
@@ -281,11 +281,6 @@ public final Shape getInstanceShape(PythonLanguage lang) {
281
return lang.getBuiltinTypeInstanceShape(this);
282
}
283
284
- public final Shape getInstanceShape() {
285
- CompilerDirectives.bailout("slow path operation");
286
- return PythonLanguage.getCurrent().getBuiltinTypeInstanceShape(this);
287
- }
288
-
289
@CompilationFinal(dimensions = 1) public static final PythonBuiltinClassType[] VALUES = Arrays.copyOf(values(), values().length - 1);
290
@CompilationFinal(dimensions = 1) public static final PythonBuiltinClassType[] EXCEPTIONS;
291
0 commit comments