summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-05-03 01:38:24 (GMT)
committerGuido van Rossum <guido@python.org>2015-05-03 01:38:24 (GMT)
commit0a9933ebf3704540a5f31225b26acb990e1de4bf (patch)
treeaabc7b609ae15cc12bf49cd4451122d2c661c471 /Misc
parent4590c3d944230aff3d1e6810d3113e790922359c (diff)
downloadcpython-0a9933ebf3704540a5f31225b26acb990e1de4bf.zip
cpython-0a9933ebf3704540a5f31225b26acb990e1de4bf.tar.gz
cpython-0a9933ebf3704540a5f31225b26acb990e1de4bf.tar.bz2
Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9eaaf58..24fc150 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine
+ functions without __name__.
+
- Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes.
Patch written by William Orr.