From: Guido van Rossum <guido@python.org> Date: Sun, 26 Jan 2014 01:30:19 +0000 (-0800) Subject: NEWS update for asyncio. X-Git-Tag: v3.4.0b3~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6fb2c76299d33da31b33948bacbda691da1d473;p=python NEWS update for asyncio. --- diff --git a/Misc/NEWS b/Misc/NEWS index 316ffbe636..918739135f 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