diff options
author | Guido van Rossum <guido@python.org> | 2014-01-26 01:30:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-01-26 01:30:19 (GMT) |
commit | d6fb2c76299d33da31b33948bacbda691da1d473 (patch) | |
tree | d9580cdb5f43e9e24e016c53b70305107640f428 | |
parent | fef7098ef9282cfc8a2c480408de351d5bf36fb1 (diff) | |
download | cpython-d6fb2c76299d33da31b33948bacbda691da1d473.zip cpython-d6fb2c76299d33da31b33948bacbda691da1d473.tar.gz cpython-d6fb2c76299d33da31b33948bacbda691da1d473.tar.bz2 |
NEWS update for asyncio.
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |