]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #13883: Document all platforms PYTHONCASEOK works on.
authorBrett Cannon <brett@python.org>
Thu, 26 Jan 2012 23:29:06 +0000 (18:29 -0500)
committerBrett Cannon <brett@python.org>
Thu, 26 Jan 2012 23:29:06 +0000 (18:29 -0500)
Doc/using/cmdline.rst
Misc/NEWS

index 9274d8e6b3f175c0302c4a9ceb628ee7415833ae..c386fb41ee0306429cd599541ca3298b8ad40d26 100644 (file)
@@ -448,7 +448,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, and OS/2.
 
 
 .. envvar:: PYTHONDONTWRITEBYTECODE
index 5e2c47ee04404af23d2d90e7cc1316c565ccc67d..ba60758780ffbde446c726bfbfaeff62456a5623 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -432,6 +432,8 @@ Extension Modules
 Documentation
 -------------
 
+- Issue #13883: PYTHONCASEOK also used on OS X and OS/2.
+
 - Issue #12949: Document the kwonlyargcount argument for the PyCode_New
   C API function.