]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-46417: Add missing types of _PyTypes_InitTypes() (GH-30749)
authorVictor Stinner <vstinner@python.org>
Fri, 21 Jan 2022 16:53:13 +0000 (17:53 +0100)
committerGitHub <noreply@github.com>
Fri, 21 Jan 2022 16:53:13 +0000 (17:53 +0100)
commita1bf329bca80a0259da454c936075e11e6af710f
tree739c979b6084526941603b45ce6d17fb6a502002
parentfda88864980ffce57add0ea03fb9cbda2798975e
bpo-46417: Add missing types of _PyTypes_InitTypes() (GH-30749)

Add types removed by mistake by the commit adding
_PyTypes_FiniTypes().

Move also PyBool_Type at the end, since it depends on PyLong_Type.

PyBytes_Type and PyUnicode_Type no longer depend explicitly on
PyBaseObject_Type: it's the default of PyType_Ready().
Objects/bytesobject.c
Objects/object.c
Objects/unicodeobject.c