summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2013-09-03 21:37:26 (GMT)
committerMeador Inge <meadori@gmail.com>2013-09-03 21:37:26 (GMT)
commitd151da9ef7de3ce93f0e29a62ae2a470495db1d0 (patch)
treea07354e9daa84c8cef227097b2e92a935b2ce2c3 /Misc
parent9edb168dd7f8fbe2da9874de720c2d00e5a3bf7e (diff)
downloadcpython-d151da9ef7de3ce93f0e29a62ae2a470495db1d0.zip
cpython-d151da9ef7de3ce93f0e29a62ae2a470495db1d0.tar.gz
cpython-d151da9ef7de3ce93f0e29a62ae2a470495db1d0.tar.bz2
Issue #16826: Don't check for PYTHONCASEOK when using -E.
This commit fixes a regression that sneaked into Python 3.3 where importlib was not respecting -E when checking for the PYTHONCASEOK environment variable.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3961ef9..ef44c6b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,8 @@ Core and Builtins
Library
-------
+- Issue #16826: Don't check for PYTHONCASEOK if interpreter started with -E.
+
- Issue #18418: After fork(), reinit all threads states, not only active ones.
Patch by A. Jesse Jiryu Davis.