diff options
author | idomic <michael.ido@gmail.com> | 2020-03-09 07:57:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 12:57:53 +0100 |
commit | fc72ab6913f2b5337ae7fda711f2de846d38f479 (patch) | |
tree | 2978bd3e0b166854e13690f9acc376d442f0df64 /Doc/library | |
parent | e53a3932cb01683b0fa8a7448ca25a2e658c39e6 (diff) | |
download | cpython-git-fc72ab6913f2b5337ae7fda711f2de846d38f479.tar.gz |
bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)
The importlib module now ignores the PYTHONCASEOK
environment variable when the -E or -I command line
options are being used.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index ca09e6f330..3474216d7a 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1835,6 +1835,9 @@ are always available. They are listed here in alphabetical order. Negative values for *level* are no longer supported (which also changes the default value to 0). + .. versionchanged:: 3.9 + When the command line options :option:`-E` or :option:`-I` are being used, + the environment variable :envvar:`PYTHONCASEOK` is now ignored. .. rubric:: Footnotes |