Skip to content

Commit 94399c2

Browse files
committed
fix incompatible types
1 parent 4759ad9 commit 94399c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9434,7 +9434,7 @@ do_super_lookup(superobject *su, PyTypeObject *su_type, PyObject *su_obj,
94349434

94359435
skip:
94369436
if (su == NULL) {
9437-
PyObject *args[] = {su_type, su_obj};
9437+
PyObject *args[] = {(PyObject *)su_type, su_obj};
94389438
su = (superobject *)PyObject_Vectorcall((PyObject *)&PySuper_Type, args, 2, NULL);
94399439
if (su == NULL) {
94409440
return NULL;

0 commit comments

Comments
 (0)