Skip to content
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

[3.12] gh-116510: Fix a crash due to shared immortal interned strings. #124541

Merged
merged 2 commits into from
Sep 27, 2024

Commits on Sep 25, 2024

  1. pythongh-116510: Fix crash due to shared immortal interned strings.

    Fix a crash caused by immortal interned strings being shared between
    sub-interpreters that use basic single-phase init.  In that case, the string
    can be used by an interpreter that outlives the interpeter that created and
    interned it.  For interpreters that share obmalloc state, also share the
    interned dict with the main interpreter.
    nascheme committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    3aa5e2a View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. Configuration menu
    Copy the full SHA
    82cfa96 View commit details
    Browse the repository at this point in the history