[Python-checkins] cpython (3.4): Misc/NEWS: Add some missing news items re asyncio.

larry.hastings python-checkins at python.org
Mon Mar 17 07:32:35 CET 2014


http://hg.python.org/cpython/rev/cb88ed0e2e1d
changeset:   89751:cb88ed0e2e1d
branch:      3.4
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Thu Feb 20 13:59:14 2014 -0500
summary:
  Misc/NEWS: Add some missing news items re asyncio.

files:
  Misc/NEWS |  19 +++++++++++++++++++
  1 files changed, 19 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,25 @@
 Library
 -------
 
+- 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.
+
 - Issue #20684: Fix inspect.getfullargspec() to not to follow __wrapped__
   chains. Make its behaviour consistent with bound methods first argument.
   Patch by Nick Coghlan and Yury Selivanov.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list