diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2024-10-23 16:10:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 16:10:06 (GMT) |
commit | 6f26d496d3c894970ee18a125e9100791ebc2b36 (patch) | |
tree | 62999ec30e17bb0334c82ae7137b10a6d64f3e48 /Doc/whatsnew | |
parent | de0d5c6e2e12f24ade1ccc457afaf5fb2c650c64 (diff) | |
download | cpython-6f26d496d3c894970ee18a125e9100791ebc2b36.zip cpython-6f26d496d3c894970ee18a125e9100791ebc2b36.tar.gz cpython-6f26d496d3c894970ee18a125e9100791ebc2b36.tar.bz2 |
gh-125286: Share the Main Refchain With Legacy Interpreters (gh-125709)
They used to be shared, before 3.12. Returning to sharing them resolves a failure on Py_TRACE_REFS builds.
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.14.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index b389e6d..64f3d18 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -416,6 +416,15 @@ symtable (Contributed by Bénédikt Tran in :gh:`120029`.) + +sys +--- + +* The previously undocumented special function :func:`sys.getobjects`, + which only exists in specialized builds of Python, may now return objects + from other interpreters than the one it's called in. + + unicodedata ----------- |