summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-07-11 12:12:36 (GMT)
committerGitHub <noreply@github.com>2022-07-11 12:12:36 (GMT)
commitf5b76330cfb93e1ad1a77c71dafe719f6a808cec (patch)
treee0b45fff0dbbca680928e6d87d660ededb653798 /Misc
parent1fdc35ef519855e1b69addf43af74f3ac7f37a6f (diff)
downloadcpython-f5b76330cfb93e1ad1a77c71dafe719f6a808cec.zip
cpython-f5b76330cfb93e1ad1a77c71dafe719f6a808cec.tar.gz
cpython-f5b76330cfb93e1ad1a77c71dafe719f6a808cec.tar.bz2
GH-94736: Fix _multiprocessing.SemLock subclassing (#94738)
* fix allocator and deallocator * 📜🤖 Added by blurb_it. * code review Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-07-11-10-41-48.gh-issue-94736.EbsgeK.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-07-11-10-41-48.gh-issue-94736.EbsgeK.rst b/Misc/NEWS.d/next/Library/2022-07-11-10-41-48.gh-issue-94736.EbsgeK.rst
new file mode 100644
index 0000000..3080672
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-07-11-10-41-48.gh-issue-94736.EbsgeK.rst
@@ -0,0 +1 @@
+Fix crash when deallocating an instance of a subclass of ``_multiprocessing.SemLock``. Patch by Kumar Aditya.