From 2c045bd5673d56c3fdde7536da9df1c7d6f270f0 Mon Sep 17 00:00:00 2001 From: Itamar Ostricher Date: Thu, 4 Nov 2021 03:39:50 -0700 Subject: [PATCH] bpo-45697: Use PyObject_TypeCheck in type_call (GH-29392) --- Objects/typeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 18bea476ea9..51ec93d8752 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -1121,7 +1121,7 @@ type_call(PyTypeObject *type, PyObject *args, PyObject *kwds) /* If the returned object is not an instance of type, it won't be initialized. */ - if (!PyType_IsSubtype(Py_TYPE(obj), type)) + if (!PyObject_TypeCheck(obj, type)) return obj; type = Py_TYPE(obj);