From: Brett Cannon Date: Thu, 26 Jan 2012 23:30:52 +0000 (-0500) Subject: Issue #13883: PYTHONCASEOK also works with OS X. X-Git-Tag: v3.3.0a1~300 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc70cbcb9a62f3c36820f1f7dc8d0c30b0135558;p=thirdparty%2FPython%2Fcpython.git Issue #13883: PYTHONCASEOK also works with OS X. --- fc70cbcb9a62f3c36820f1f7dc8d0c30b0135558 diff --cc Doc/using/cmdline.rst index d9cf954ce192,c386fb41ee03..8a02b764eac8 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@@ -450,7 -448,7 +450,7 @@@ These environment variables influence P .. 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. ++ only works on Windows and OS X. .. envvar:: PYTHONDONTWRITEBYTECODE diff --cc Misc/NEWS index 2dab0a1c368e,ba60758780ff..a970dc5c12c4 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2117,17 -1358,6 +2117,19 @@@ C-AP Documentation ------------- ++- Issue #13883: PYTHONCASEOK also works on OS X. ++ +- Issue #12949: Document the kwonlyargcount argument for the PyCode_New + C API function. + +- Issue #13513: Fix io.IOBase documentation to correctly link to the + io.IOBase.readline method instead of the readline module. + +- Issue #13237: Reorganise subprocess documentation to emphasise convenience + functions and the most commonly needed arguments to Popen. + +- Issue #13141: Demonstrate recommended style for socketserver examples. + - Issue #11818: Fix tempfile examples for Python 3.