summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBar Harel <bzvi7919@gmail.com>2018-02-02 23:15:31 (GMT)
committerYury Selivanov <yury@magic.io>2018-02-02 23:15:31 (GMT)
commit7e4cf8e95d2971ae0d5fb417152183070184293f (patch)
tree4d83f97a0695d0b33846e6e10394bb83337a88ce /Misc
parentfbf8e823c02ac1c93a48609cc74e439e19ccb426 (diff)
downloadcpython-7e4cf8e95d2971ae0d5fb417152183070184293f.zip
cpython-7e4cf8e95d2971ae0d5fb417152183070184293f.tar.gz
cpython-7e4cf8e95d2971ae0d5fb417152183070184293f.tar.bz2
[3.6] bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466) (#5502)
(cherry picked from commit d41e9e0952393e64f2f9756d778553d704191086)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0a0823c..ac13459 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -589,6 +589,7 @@ Milton L. Hankins
Stephen Hansen
Barry Hantman
Lynda Hardman
+Bar Harel
Derek Harland
Jason Harper
David Harrigan
diff --git a/Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst b/Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst
new file mode 100644
index 0000000..14d4bbd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst
@@ -0,0 +1,2 @@
+Fixed ``asyncio.Lock()`` safety issue which allowed acquiring and locking
+the same lock multiple times, without it being free. Patch by Bar Harel.