diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-09-01 09:16:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 09:16:09 (GMT) |
commit | 844f4c2e12a7c637d1de93dbbb0718be06553510 (patch) | |
tree | 8985afdbf9c614ca006d4a7c44578ff6586a727d /Misc/NEWS.d/next | |
parent | 044b8b3b6a65e6651b161e3badfa5d57c666db19 (diff) | |
download | cpython-844f4c2e12a7c637d1de93dbbb0718be06553510.zip cpython-844f4c2e12a7c637d1de93dbbb0718be06553510.tar.gz cpython-844f4c2e12a7c637d1de93dbbb0718be06553510.tar.bz2 |
gh-108727: Fix segfault due to missing tp_dealloc definition for CounterOptimizer_Type (GH-108734)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-08-31-21-29-28.gh-issue-108727.blNRGM.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-08-31-21-29-28.gh-issue-108727.blNRGM.rst b/Misc/NEWS.d/next/Core and Builtins/2023-08-31-21-29-28.gh-issue-108727.blNRGM.rst new file mode 100644 index 0000000..34959ae --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-08-31-21-29-28.gh-issue-108727.blNRGM.rst @@ -0,0 +1,2 @@ +Define ``tp_dealloc`` for ``CounterOptimizer_Type``. This fixes a segfault +on deallocation. |