summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-18 17:21:57 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-02-18 17:21:57 (GMT)
commit8e7761ec70ba0627eb133d468549a44b39f7a421 (patch)
treec95f1cb725d00aeb0b272e842f8dee4646392fa5 /Misc
parent88a5bf0b2e2a55d8418132001a611af9c0419665 (diff)
downloadcpython-8e7761ec70ba0627eb133d468549a44b39f7a421.zip
cpython-8e7761ec70ba0627eb133d468549a44b39f7a421.tar.gz
cpython-8e7761ec70ba0627eb133d468549a44b39f7a421.tar.bz2
Misc/NEWS: Add a news item for UNIX Sockets support in asyncio. Cleanup WS.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7dbbd84..c0ba828e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,13 +41,17 @@ Library
Based on patch by Stephen Tu.
- Issue #8478: Untokenizer.compat processes first token from iterator input.
- Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees.
+ Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees.
- Issue #20594: Avoid name clash with the libc function posix_close.
- Issue #19856: shutil.move() failed to move a directory to other directory
on Windows if source name ends with os.altsep.
+- Issue #20673: Implement support for UNIX Domain Sockets in asyncio.
+ New APIs: loop.create_unix_connection(), loop.create_unix_server(),
+ streams.open_unix_connection(), and streams.start_unix_server().
+
Tests
-----