[Python-checkins] cpython: Add some asyncio news for beta 2.

guido.van.rossum python-checkins at python.org
Sat Dec 21 05:47:20 CET 2013


http://hg.python.org/cpython/rev/320fbfd40691
changeset:   88107:320fbfd40691
user:        Guido van Rossum <guido at python.org>
date:        Fri Dec 20 20:47:06 2013 -0800
summary:
  Add some asyncio news for beta 2.

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


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,20 @@
 Library
 -------
 
+- Issue #19967: Thanks to the PEP 442, asyncio.Future now uses a
+  destructor to log uncaught exceptions, instead of the dedicated
+  _TracebackLogger class.
+
+- Added a Task.current_task() class method to asyncio.
+
+- Issue #19850: Set SA_RESTART in asyncio when registering a signal
+  handler to limit EINTR occurrences.
+
+- Implemented write flow control in asyncio for proactor event loop (Windows).
+
+- Change write buffer in asyncio use to avoid O(N**2) behavior.  Make
+  write()/sendto() accept bytearray/memoryview.
+
 - Issue #20034: Updated alias mapping to most recent locale.alias file
   from X.org distribution using makelocalealias.py.
 

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


More information about the Python-checkins mailing list