diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2010-07-02 16:01:53 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2010-07-02 16:01:53 (GMT) |
commit | 601ec58f3e2b81184aab102f4eb21adb1c79a041 (patch) | |
tree | 2651f0716b0a181d1a0373ad9431c3de77cbb437 | |
parent | 8c16c5ce1047bb39b421c9f04c38f7b6f6b0256b (diff) | |
download | cpython-601ec58f3e2b81184aab102f4eb21adb1c79a041.zip cpython-601ec58f3e2b81184aab102f4eb21adb1c79a041.tar.gz cpython-601ec58f3e2b81184aab102f4eb21adb1c79a041.tar.bz2 |
Issue 8202 actually caused an unintended behavioural change and was reverted in 2.7 - remove reference from What's New
-rw-r--r-- | Doc/whatsnew/2.7.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 72aa7e6..43a0124 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -859,13 +859,6 @@ across operating systems and shells.) export PYTHONWARNINGS=all,error:::Cookie:0 -When running a module using the interpreter's :option:`-m` switch, -``sys.argv[0]`` will now be set to the string ``'-m'`` while the -module is being located. This change is visible to user code while -executing the :file:`__init__.py` files for any parent packages of -the module to be executed. (Suggested by Michael Foord; implemented -by Nick Coghlan; :issue:`8202`.) - .. ====================================================================== |