Skip to content

Commit 13486cb

Browse files
fix name
1 parent 8a25bfb commit 13486cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/typeobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6607,7 +6607,7 @@ compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, const char*
66076607

66086608

66096609
static int
6610-
object_set_class_no_world_stopped(PyObject *self, PyTypeObject *newto, PyTypeObject **oldto_p)
6610+
object_set_class_world_stopped(PyObject *self, PyTypeObject *newto, PyTypeObject **oldto_p)
66116611
{
66126612
PyTypeObject *oldto = Py_TYPE(self);
66136613

@@ -6739,7 +6739,7 @@ object_set_class(PyObject *self, PyObject *value, void *closure)
67396739
_PyEval_StopTheWorld(interp);
67406740
#endif
67416741
PyTypeObject *oldto;
6742-
int res = object_set_class_no_world_stopped(self, newto, &oldto);
6742+
int res = object_set_class_world_stopped(self, newto, &oldto);
67436743
#ifdef Py_GIL_DISABLED
67446744
_PyEval_StartTheWorld(interp);
67456745
#endif

0 commit comments

Comments
 (0)