[Python-checkins] cpython: More asyncio news.

guido.van.rossum python-checkins at python.org
Sat Feb 8 01:11:25 CET 2014


http://hg.python.org/cpython/rev/b541ecd32115
changeset:   89028:b541ecd32115
user:        Guido van Rossum <guido at python.org>
date:        Fri Feb 07 16:11:17 2014 -0800
summary:
  More asyncio news.

files:
  Misc/NEWS |  16 +++++++++++-----
  1 files changed, 11 insertions(+), 5 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -77,12 +77,18 @@
   select.epoll.poll(), selectors.PollSelector.poll() and
   selectors.EpollSelector.poll(). For example, a timeout of one microsecond
   (1e-6) is now rounded to one millisecondi (1e-3), instead of being rounded to
-  zero.
-
-- asyncio: Some refactoring; add write flow control to unix pipes;
-  support wait_for(f, None); don't log broken/disconnected pipes; use
+  zero.  However, the granularity property and asyncio's resolution feature
+  were removed again.
+
+- asyncio: Some refactoring; various fixes; add write flow control to
+  unix pipes; Future.set_exception() instantiates the exception
+  argument if it is a class; improved proactor pipe transport; support
+  wait_for(f, None); don't log broken/disconnected pipes; use
   ValueError instead of assert for forbidden subprocess_{shell,exec}
-  arguments.  (More to follow -- a convenience API for subprocesses.)
+  arguments; added a convenience API for subprocess management; added
+  StreamReader.at_eof(); properly handle duplicate coroutines/futures
+  in gather(), wait(), as_completed(); use a bytearray for buffering
+  in StreamReader; and more.
 
 - Issue #20288: fix handling of invalid numeric charrefs in HTMLParser.
 

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


More information about the Python-checkins mailing list