8000 gh-113190: Reenable non-debug interned string cleanup by eduardo-elizondo · Pull Request #113601 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-113190: Reenable non-debug interned string cleanup #113601

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Aug 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Lint docs
  • Loading branch information
eduardo-elizondo committed Jan 15, 2024
commit 2608119bf24f5f0f34606d57dbd9d43b52067387
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.13.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ New Features
* Modified :c:func:`_PyUnicode_ClearInterned` function to always delete all
interned strings during a call to :c:func:`Py_Finalize`. This makes all
is backwards incompatible to any C-Extension that holds onto an interned
string after a call to c:func:`Py_Finalize` and is then reused after a
string after a call to c:func:`Py_Finalize` and is then reused after a
call to c:func:`Py_Initialize`. Any issues arising from this behavior will
normally result in crashes during the exectuion of the subsequent call to
c:func:`Py_Initatilize` from accessing uninitialized memory. To fix, use
Expand Down
0