summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-08-23 17:19:15 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-08-23 17:19:15 (GMT)
commit0c2dd0c0a9498422645a2805a955b9a898298bc6 (patch)
treef98ad2598c161f12732d501b7ee18540a3efa727 /Misc
parentf1e0273023d870e575add13dc05ab507ed05268f (diff)
downloadcpython-0c2dd0c0a9498422645a2805a955b9a898298bc6.zip
cpython-0c2dd0c0a9498422645a2805a955b9a898298bc6.tar.gz
cpython-0c2dd0c0a9498422645a2805a955b9a898298bc6.tar.bz2
Close #17702: On error, os.environb now removes suppress the except context
when raising a new KeyError with the original key.
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 bfb2fd8..81ad8f5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #17702: On error, os.environb now removes suppress the except context
+ when raising a new KeyError with the original key.
+
- Issue #18755: Fixed the loader used in imp to allow get_data() to be called
multiple times.