File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -900,14 +900,14 @@ protected int getLength(PTuple t) {
900
900
// issubclass(class, classinfo)
901
901
@ Builtin (name = ISSUBCLASS , fixedNumOfPositionalArgs = 2 )
902
902
@ GenerateNodeFactory
903
- public abstract static class IsSubClassNode extends PythonBuiltinNode {
903
+ public abstract static class IsSubClassNode extends PythonBinaryBuiltinNode {
904
904
@ Child private LookupAndCallBinaryNode subclassCheckNode = LookupAndCallBinaryNode .create (__SUBCLASSCHECK__ );
905
905
@ Child private CastToBooleanNode castToBooleanNode = CastToBooleanNode .createIfTrueNode ();
906
906
@ Child private IsSubtypeNode isSubtypeNode = IsSubtypeNode .create ();
907
907
@ Child private SequenceStorageNodes .LenNode lenNode ;
908
908
909
909
public static IsSubClassNode create () {
910
- return BuiltinFunctionsFactory .IsSubClassNodeFactory .create (null );
910
+ return BuiltinFunctionsFactory .IsSubClassNodeFactory .create ();
911
911
}
912
912
913
913
private boolean isInstanceCheckInternal (Object derived , Object cls ) {
You can’t perform that action at this time.
0 commit comments