diff options
author | Guido van Rossum <guido@python.org> | 2015-04-20 16:24:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-04-20 16:24:24 (GMT) |
commit | 0bd16bc4cdbb896e6f201f14e43fd44580024362 (patch) | |
tree | bfe26307bb3238f9b910c106555fb29aa918e8a6 /Misc | |
parent | 77e8311deb1db0e823a9ac0d16ce3c0d557453fa (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |