We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4bbfcb commit 1bd26c4Copy full SHA for 1bd26c4
Objects/typeobject.c
@@ -4325,12 +4325,11 @@ _PyStaticType_Dealloc(PyTypeObject *type)
4325
assert(state != NULL);
4326
state->type = NULL;
4327
static_builtin_index_clear(type);
4328
+ /* We leave _Py_TPFLAGS_STATIC_BUILTIN set on tp_flags. */
4329
4330
PyInterpreterState *interp = _PyInterpreterState_GET();
4331
assert(interp->types.num_builtins_initialized > 0);
4332
interp->types.num_builtins_initialized--;
-
4333
- /* We leave tp_flags with _Py_TPFLAGS_STATIC_BUILTIN set. */
4334
}
4335
4336
0 commit comments