diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-19 13:23:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 13:23:47 (GMT) |
commit | 4dee92b0ad9f4e3ea2fbbbb5253340801bb92dc7 (patch) | |
tree | 2a3aa41655e59e8b986c677385b203174b5c8c1b /Doc | |
parent | ab6423fe2de0ed5f8a0dc86a9c7070229326b0f0 (diff) | |
download | cpython-4dee92b0ad9f4e3ea2fbbbb5253340801bb92dc7.zip cpython-4dee92b0ad9f4e3ea2fbbbb5253340801bb92dc7.tar.gz cpython-4dee92b0ad9f4e3ea2fbbbb5253340801bb92dc7.tar.bz2 |
Revert "bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314)" (GH-18553)
This reverts commit d83b6600b25487e4ebffd7949d0f478de9538875.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 3 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index ba5c388..cc48597 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1829,9 +1829,6 @@ 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 diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index f7e279b..66eb9e7 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -584,9 +584,6 @@ Changes in the Python API since the *buffering* parameter has been removed. (Contributed by Victor Stinner in :issue:`39357`.) -* The :mod:`importlib` module now ignores the :envvar:`PYTHONCASEOK` - environment variable when the :option:`-E` or :option:`-I` command line - options are being used. CPython bytecode changes ------------------------ |