Issue #13883: Document all platforms PYTHONCASEOK works on.

This commit is contained in:
Brett Cannon 2012-01-26 18:32:24 -05:00
parent 0a15103d79
commit 64b2b6a84d
2 changed files with 3 additions and 1 deletions

View File

@ -512,7 +512,7 @@ These environment variables influence Python's behavior.
.. envvar:: PYTHONCASEOK
If this is set, Python ignores case in :keyword:`import` statements. This
only works on Windows.
only works on Windows, OS X, OS/2, and RiscOS.
.. envvar:: PYTHONDONTWRITEBYTECODE

View File

@ -498,6 +498,8 @@ Tests
Documentation
-------------
- Issue #13883: PYTHONCASEOK also works on OS X, OS/2, and RiscOS.
- Issue #2134: The tokenize documentation has been clarified to explain why
all operator and delimiter tokens are treated as token.OP tokens.