summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-07-02 16:01:53 +0000
committerNick Coghlan <ncoghlan@gmail.com>2010-07-02 16:01:53 +0000
commit00ee9c03ca8043c4bb6c9c8570abb7aef098a06d (patch)
treea8cf09c5b0d816de8ed077b3ff83035a4a24a015
parent231c04522f03f381187a6dbf3f1774c08b0ec229 (diff)
downloadcpython-00ee9c03ca8043c4bb6c9c8570abb7aef098a06d.tar.gz
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.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index 72aa7e6e3b..43a01247d9 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`.)
-
.. ======================================================================