diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-09-07 22:02:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 22:02:08 (GMT) |
commit | 4e4bfffe2ded7339663945ad4c494db0e88ec96c (patch) | |
tree | fd0af2d3464ae3de99304faad2e5baaedec0f6f9 /Python | |
parent | b65686c50563c5f64b4eb6e684807c6ab6089523 (diff) | |
download | cpython-4e4bfffe2ded7339663945ad4c494db0e88ec96c.zip cpython-4e4bfffe2ded7339663945ad4c494db0e88ec96c.tar.gz cpython-4e4bfffe2ded7339663945ad4c494db0e88ec96c.tar.bz2 |
GH-90699: use statically allocated interned strings in typeobject's slotdefs (GH-94706)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pylifecycle.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 8ce6d71..c550f13 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -695,11 +695,6 @@ pycore_init_types(PyInterpreterState *interp) { PyStatus status; - status = _PyTypes_InitState(interp); - if (_PyStatus_EXCEPTION(status)) { - return status; - } - status = _PyTypes_InitTypes(interp); if (_PyStatus_EXCEPTION(status)) { return status; |