summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-06-05 09:33:27 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-05 09:33:26 (GMT)
commit9aa78566fbeeb8cdaa669ad22f92cf63765f4135 (patch)
tree55e1d3225f335ca1dea38cd9780f965f063cb2fd /Misc
parentd4cf099dff4720a25208b5fa247dc16d86b11ac3 (diff)
downloadcpython-9aa78566fbeeb8cdaa669ad22f92cf63765f4135.zip
cpython-9aa78566fbeeb8cdaa669ad22f92cf63765f4135.tar.gz
cpython-9aa78566fbeeb8cdaa669ad22f92cf63765f4135.tar.bz2
bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-13834)
https://bugs.python.org/issue34767
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-04-23-44-52.bpo-34767.BpDShN.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-04-23-44-52.bpo-34767.BpDShN.rst b/Misc/NEWS.d/next/Library/2019-06-04-23-44-52.bpo-34767.BpDShN.rst
new file mode 100644
index 0000000..b46bc44
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-06-04-23-44-52.bpo-34767.BpDShN.rst
@@ -0,0 +1 @@
+Do not always create a :class:`collections.deque` in :class:`asyncio.Lock`.