summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-07-11 12:39:09 (GMT)
committerGitHub <noreply@github.com>2022-07-11 12:39:09 (GMT)
commit916686fdb273d6adbd403e6d58029960ec7a89ab (patch)
tree513ec194ba47f25a500d8b96dca3e70736347972 /Misc
parentb87d03d355a1b303a1e0550b0da0fdeb99674da5 (diff)
downloadcpython-916686fdb273d6adbd403e6d58029960ec7a89ab.zip
cpython-916686fdb273d6adbd403e6d58029960ec7a89ab.tar.gz
cpython-916686fdb273d6adbd403e6d58029960ec7a89ab.tar.bz2
GH-94736: Fix _multiprocessing.SemLock subclassing (GH-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> (cherry picked from commit f5b76330cfb93e1ad1a77c71dafe719f6a808cec) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@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.