summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-12-21 04:47:06 (GMT)
committerGuido van Rossum <guido@python.org>2013-12-21 04:47:06 (GMT)
commita960599be5a577fdf62da9a40c997f25b4971250 (patch)
tree43a7b362341fd52721d29f150cf432a2cdfa862d
parent68600c73bfe32e7a9ef759aa6ce39503f96d0fe7 (diff)
downloadcpython-a960599be5a577fdf62da9a40c997f25b4971250.zip
cpython-a960599be5a577fdf62da9a40c997f25b4971250.tar.gz
cpython-a960599be5a577fdf62da9a40c997f25b4971250.tar.bz2
Add some asyncio news for beta 2.
-rw-r--r--Misc/NEWS14
1 files changed, 14 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a126d80..c38a8c4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,20 @@ Core and Builtins
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.