From: Brett Cannon Date: Thu, 26 Jan 2012 23:29:06 +0000 (-0500) Subject: Issue #13883: Document all platforms PYTHONCASEOK works on. X-Git-Tag: v3.2.3rc1~122^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1740afded1fa54f9083e1cfa104f5a661ee06c7e;p=thirdparty%2FPython%2Fcpython.git Issue #13883: Document all platforms PYTHONCASEOK works on. --- diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 9274d8e6b3f1..c386fb41ee03 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -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 diff --git a/Misc/NEWS b/Misc/NEWS index 5e2c47ee0440..ba60758780ff 100644 --- 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.