Issue #13883: Document all platforms PYTHONCASEOK works on.
authorBrett Cannon <brett@python.org>
Thu, 26 Jan 2012 23:32:24 +0000 (18:32 -0500)
committerBrett Cannon <brett@python.org>
Thu, 26 Jan 2012 23:32:24 +0000 (18:32 -0500)
Doc/using/cmdline.rst
Misc/NEWS

index fed83dfcc427fc48f9792b33a4c387149c335a61..29d249f00fb125dfdb39cd690c3bde5bc1a7afb7 100644 (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
index 5613ea52c552b8fce1d8a33e88398155b6b283b4..188a09d30618fa79eb3e3b68147b05cb1e64a2f0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.