summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-04-14 14:35:04 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-04-14 14:35:04 (GMT)
commit6d10139d70b80cf1326c2763dd13ecc169ce1931 (patch)
tree89f487d9481b0ddfde8efbeea9872daab60f1333 /Misc
parentc4e0d982f3b967973553c99722b1e4002c8b35f6 (diff)
downloadcpython-6d10139d70b80cf1326c2763dd13ecc169ce1931.zip
cpython-6d10139d70b80cf1326c2763dd13ecc169ce1931.tar.gz
cpython-6d10139d70b80cf1326c2763dd13ecc169ce1931.tar.bz2
Close #17702: os.environ now raises KeyError with the original environment
variable name (str on UNIX), instead of using the encoded name (bytes on UNIX).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c40ce84..2ee78a9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,10 @@ Core and Builtins
Library
-------
+- Issue #17702: os.environ now raises KeyError with the original environment
+ variable name (str on UNIX), instead of using the encoded name (bytes on
+ UNIX).
+
- Issue #16163: Make the importlib based version of pkgutil.iter_importers
work for submodules. Initial patch by Berker Peksag.