diff options
author | Yury Selivanov <yselivanov@gmail.com> | 2017-03-03 03:20:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-03 03:20:00 (GMT) |
commit | 398ff91ac0b8f4d930cd5d9e3e6a4bf247f810ef (patch) | |
tree | 574e40060c9c962fa87627af595ee540dbe33ab1 /Misc | |
parent | 8d26aa930c0123933a1ceb12fceba4f5aef4e95e (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |