diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-07-11 12:12:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-11 12:12:36 (GMT) |
commit | f5b76330cfb93e1ad1a77c71dafe719f6a808cec (patch) | |
tree | e0b45fff0dbbca680928e6d87d660ededb653798 /Misc | |
parent | 1fdc35ef519855e1b69addf43af74f3ac7f37a6f (diff) | |
download | cpython-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.rst | 1 |
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. |