]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-116510: Fix crash during sub-interpreter shutdown (gh-124645)
authorNeil Schemenauer <nas-github@arctrix.com>
Fri, 27 Sep 2024 02:33:07 +0000 (19:33 -0700)
committerGitHub <noreply@github.com>
Fri, 27 Sep 2024 02:33:07 +0000 (19:33 -0700)
commit6f9525dd3f0ef5809106ca0923a7512d666a04bb
tree88edd0ab74571083573563e7abdd2b4a51c2d379
parent98b2ed7e239c807f379cd2bf864f372d79064aac
gh-116510: Fix crash during sub-interpreter shutdown (gh-124645)

Fix a bug that can cause a crash when sub-interpreters use "basic"
single-phase extension modules.  Shared objects could refer to PyGC_Head
nodes that had been freed as part of interpreter shutdown.
Misc/NEWS.d/next/Core_and_Builtins/2024-09-26-17-55-34.gh-issue-116510.dhn8w8.rst [new file with mode: 0644]
Python/gc.c