From: Brett Cannon Date: Thu, 26 Jan 2012 23:32:24 +0000 (-0500) Subject: Issue #13883: Document all platforms PYTHONCASEOK works on. X-Git-Tag: v2.7.3rc1~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64b2b6a84d48ba0ddfdfc1cdde20d2932562a1b0;p=python Issue #13883: Document all platforms PYTHONCASEOK works on. --- diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index fed83dfcc4..29d249f00f 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -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 diff --git a/Misc/NEWS b/Misc/NEWS index 5613ea52c5..188a09d306 100644 --- 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.