summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@gmail.com>2017-03-03 03:20:00 (GMT)
committerGitHub <noreply@github.com>2017-03-03 03:20:00 (GMT)
commit398ff91ac0b8f4d930cd5d9e3e6a4bf247f810ef (patch)
tree574e40060c9c962fa87627af595ee540dbe33ab1 /Misc
parent8d26aa930c0123933a1ceb12fceba4f5aef4e95e (diff)
downloadcpython-398ff91ac0b8f4d930cd5d9e3e6a4bf247f810ef.zip
cpython-398ff91ac0b8f4d930cd5d9e3e6a4bf247f810ef.tar.gz
cpython-398ff91ac0b8f4d930cd5d9e3e6a4bf247f810ef.tar.bz2
bpo-28893: Set __cause__ for errors in async iteration protocol (#407)
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 cc896e1..12f57f9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
+- bpo-28893: Set correct __cause__ for errors about invalid awaitables
+ returned from __aiter__ and __anext__.
+
- bpo-29683: Fixes to memory allocation in _PyCode_SetExtra. Patch by
Brian Coleman.