summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-01-26 01:30:19 (GMT)
committerGuido van Rossum <guido@python.org>2014-01-26 01:30:19 (GMT)
commitd6fb2c76299d33da31b33948bacbda691da1d473 (patch)
treed9580cdb5f43e9e24e016c53b70305107640f428 /Misc
parentfef7098ef9282cfc8a2c480408de351d5bf36fb1 (diff)
downloadcpython-d6fb2c76299d33da31b33948bacbda691da1d473.zip
cpython-d6fb2c76299d33da31b33948bacbda691da1d473.tar.gz
cpython-d6fb2c76299d33da31b33948bacbda691da1d473.tar.bz2
NEWS update for asyncio.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 316ffbe..9187391 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,13 @@ Core and Builtins
Library
-------
+- asyncio: Various improvements and small changes not all covered by
+ issues listed below. E.g. wait_for() now cancels the inner task if
+ the timeout occcurs; tweaked the set of exported symbols; renamed
+ Empty/Full to QueueEmpty/QueueFull; "with (yield from lock)" now
+ uses a separate context manager; readexactly() raises if not enough
+ data was read; PTY support tweaks.
+
- Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum
between the resolution of the BaseEventLoop.time() method and the resolution
of the selector. The granuarility is used in the scheduler to round time and