Skip to content

Commit 626999d

Browse files
committed
fix incompatible assignment
1 parent f229b5b commit 626999d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -9433,7 +9433,7 @@ do_super_lookup(superobject *su, PyTypeObject *su_type, PyObject *su_obj,
94339433

94349434
skip:
94359435
if (su == NULL) {
9436-
su = PyObject_Vectorcall((PyObject *)&PySuper_Type, NULL, 0, NULL);
9436+
su = (superobject *)PyObject_Vectorcall((PyObject *)&PySuper_Type, NULL, 0, NULL);
94379437
if (su == NULL) {
94389438
return NULL;
94399439
}

0 commit comments

Comments
 (0)