summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst
diff options
context:
space:
mode:
authorBar Harel <bzvi7919@gmail.com>2018-02-02 22:04:00 (GMT)
committerYury Selivanov <yury@magic.io>2018-02-02 22:04:00 (GMT)
commit2f79c014931cbb23b08a7d16c534a3cc9607ae14 (patch)
tree84bb7aa654ee9a7ee792ec897726da45da8ce276 /Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst
parent66771422d0541289d0b1287bc3c28e8b5609f6b4 (diff)
downloadcpython-2f79c014931cbb23b08a7d16c534a3cc9607ae14.zip
cpython-2f79c014931cbb23b08a7d16c534a3cc9607ae14.tar.gz
cpython-2f79c014931cbb23b08a7d16c534a3cc9607ae14.tar.bz2
bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466)
Diffstat (limited to 'Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2018-02-01-01-34-47.bpo-32734.gCV9AD.rst2
1 files changed, 2 insertions, 0 deletions
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.