summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-04-20 16:24:24 (GMT)
committerGuido van Rossum <guido@python.org>2015-04-20 16:24:24 (GMT)
commit0bd16bc4cdbb896e6f201f14e43fd44580024362 (patch)
treebfe26307bb3238f9b910c106555fb29aa918e8a6 /Misc
parent77e8311deb1db0e823a9ac0d16ce3c0d557453fa (diff)
downloadcpython-0bd16bc4cdbb896e6f201f14e43fd44580024362.zip
cpython-0bd16bc4cdbb896e6f201f14e43fd44580024362.tar.gz
cpython-0bd16bc4cdbb896e6f201f14e43fd44580024362.tar.bz2
Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e384e58..a6a3d82 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,10 @@ Core and Builtins
Library
-------
+- Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't
+ increment unfinished tasks (this bug was introduced in 3.4.3 when
+ JoinableQueue was merged with Queue).
+
- Issue #23908: os functions now reject paths with embedded null character
on Windows instead of silently truncate them.