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 41c951e commit 44c358dCopy full SHA for 44c358d
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type/TypeNodes.java
@@ -247,7 +247,7 @@ static long doPythonClass(PythonClass clazz,
247
} else if (mroEntry instanceof PythonBuiltinClassType) {
248
result |= doBuiltinClassType((PythonBuiltinClassType) mroEntry);
249
} else if (mroEntry instanceof PythonAbstractNativeObject) {
250
- result |= doNative((PythonAbstractNativeObject) mroEntry, CExtNodes.GetTypeMemberNode.getUncached());
+ result |= doNative((PythonAbstractNativeObject) mroEntry, getTpFlagsNode);
251
}
252
253
return result;
0 commit comments