This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Statically allocate and initialize the empty tuple.
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: eric.snow Nosy List: eric.snow
Priority: normal Keywords: patch

Created on 2022-02-14 22:40 by eric.snow, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 31345 merged eric.snow, 2022-02-14 23:06
Messages (3)
msg413268 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2022-02-14 22:40
Currently it is created dynamically from the tuple freelist.
msg413269 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2022-02-14 22:41
Also see bpo-45953.
msg414222 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2022-02-28 22:15
New changeset 08deed1af56bec8668c6cb4d5cfd89e393e1fe5e by Eric Snow in branch 'main':
bpo-46753: Add the empty tuple to the _PyRuntimeState.global_objects. (gh-31345)
https://github.com/python/cpython/commit/08deed1af56bec8668c6cb4d5cfd89e393e1fe5e
History
Date User Action Args
2022-04-11 14:59:56adminsetgithub: 90909
2022-02-28 23:44:58eric.snowsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2022-02-28 22:15:58eric.snowsetmessages: + msg414222
2022-02-16 18:36:54eric.snowlinkissue46772 dependencies
2022-02-14 23:06:32eric.snowsetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request29495
2022-02-14 22:41:11eric.snowsetmessages: + msg413269
2022-02-14 22:40:07eric.snowcreate