diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-07-25 12:47:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 12:47:31 -0600 |
commit | 4a1dd734311891662a6fc3394f93db98c93e7219 (patch) | |
tree | 2f85a419478553aeedd1622cb53dd5b302f77785 /Objects/longobject.c | |
parent | c5140945c723ae6c4b7ee81ff720ac8ea4b52cfd (diff) | |
download | cpython-git-4a1dd734311891662a6fc3394f93db98c93e7219.tar.gz |
gh-94673: Add _PyStaticType_InitBuiltin() (#95152)
This is the first of several precursors to storing tp_subclasses (and tp_weaklist) on the interpreter state for static builtin types.
We do the following:
* add `_PyStaticType_InitBuiltin()`
* add `_Py_TPFLAGS_STATIC_BUILTIN`
* set it on all static builtin types in `_PyStaticType_InitBuiltin()`
* shuffle some code around to be able to use _PyStaticType_InitBuiltin()
* rename `_PyStructSequence_InitType()` to `_PyStructSequence_InitBuiltinWithFlags()`
* add `_PyStructSequence_InitBuiltin()`.
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 4a1e5caf5a..90ed02b8c2 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -6135,7 +6135,7 @@ _PyLong_InitTypes(PyInterpreterState *interp) /* initialize int_info */ if (Int_InfoType.tp_name == NULL) { - if (PyStructSequence_InitType2(&Int_InfoType, &int_info_desc) < 0) { + if (_PyStructSequence_InitBuiltin(&Int_InfoType, &int_info_desc) < 0) { return _PyStatus_ERR("can't init int info type"); } } |