diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-04-14 14:38:35 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-04-14 14:38:35 (GMT) |
commit | 43aa0d07e2ab93bde71fb2dd5d300fef524b36cd (patch) | |
tree | 2c3248941c8aef267d978eb71954a239a050979c /Misc | |
parent | 76b3b2726c3c3c58932b460d9a9af1b5021fd8f9 (diff) | |
parent | 6d10139d70b80cf1326c2763dd13ecc169ce1931 (diff) | |
download | cpython-43aa0d07e2ab93bde71fb2dd5d300fef524b36cd.zip cpython-43aa0d07e2ab93bde71fb2dd5d300fef524b36cd.tar.gz cpython-43aa0d07e2ab93bde71fb2dd5d300fef524b36cd.tar.bz2 |
(Merge 3.3) 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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -46,6 +46,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. |