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 131a8d2 commit c236f16Copy full SHA for c236f16
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/TruffleCextBuiltins.java
@@ -1173,8 +1173,8 @@ PythonObjectNativeWrapper doPythonObject(PythonObjectNativeWrapper nativeWrapper
1173
abstract static class PyTruffle_Set_SulongType extends NativeBuiltin {
1174
1175
@Specialization
1176
- Object doPythonObject(PythonClass klass, Object ptr) {
1177
- klass.setSulongType(ptr);
+ Object doPythonObject(PythonClassNativeWrapper klass, Object ptr) {
+ ((PythonClass) klass.getPythonObject()).setSulongType(ptr);
1178
return ptr;
1179
}
1180
0 commit comments