diff options
author | Gregory P. Smith <greg@krypto.org> | 2016-06-14 16:28:08 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2016-06-14 16:28:08 (GMT) |
commit | 319a57c338057fe18d5b45eb0bae2347ef595844 (patch) | |
tree | 7e69ff9dd67938832d814de793849fd52adf5698 | |
parent | 881aa389725b5becaa5f3115d97563fc2c69a70d (diff) | |
parent | fcbe337fefc00ace11e3c6b91ba790d7c3778ee8 (diff) | |
download | cpython-319a57c338057fe18d5b45eb0bae2347ef595844.zip cpython-319a57c338057fe18d5b45eb0bae2347ef595844.tar.gz cpython-319a57c338057fe18d5b45eb0bae2347ef595844.tar.bz2 |
issue27122: fix typo in the news file, wrong issue #. not issue27123.
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ What's New in Python 3.6.0 alpha 3 Library ------- -- Issue #27123: When an exception is raised within the context being managed +- Issue #27122: When an exception is raised within the context being managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 |