diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-20 18:59:14 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-20 18:59:14 (GMT) |
commit | cd153f8bddcd31e513c02617e93182a0b481e4a6 (patch) | |
tree | 23e57d5e4a147e56948f9845592437516b9fb24e /Misc/NEWS | |
parent | 0211ed3e8988417624db1c51baa23c666babcbdc (diff) | |
download | cpython-cd153f8bddcd31e513c02617e93182a0b481e4a6.zip cpython-cd153f8bddcd31e513c02617e93182a0b481e4a6.tar.gz cpython-cd153f8bddcd31e513c02617e93182a0b481e4a6.tar.bz2 |
Misc/NEWS: Add some missing news items re asyncio.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -72,6 +72,25 @@ Library chains. Make its behaviour consistent with bound methods first argument. Patch by Nick Coghlan and Yury Selivanov. +- Issue #20566: Change asyncio.as_completed() to use a Queue, to + avoid O(N**2) behavior. + +- Issue #20704: Implement new debug API in asyncio. Add new methods + BaseEventLoop.set_debug() and BaseEventLoop.get_debug(). + Add support for setting 'asyncio.tasks._DEBUG' variable with + 'PYTHONASYNCIODEBUG' environment variable. + +- asyncio: Refactoring and fixes: BaseEventLoop.sock_connect() raises an + error if the address is not resolved; use __slots__ in Handle and + TimerHandle; as_completed() and wait() raise TypeError if the passed + list of Futures is a single Future; call_soon() and other 'call_*()' + functions raise TypeError if the passed callback is a coroutine + function; _ProactorBasePipeTransport uses _FlowControlMixin; + WriteTransport.set_write_buffer_size() calls _maybe_pause_protocol() + to consider pausing receiving if the watermark limits have changed; + fix _check_resolved_address() for IPv6 address; and other minor + improvements, along with multiple documentation updates. + Tests ----- |