diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2010-06-13 06:50:39 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2010-06-13 06:50:39 (GMT) |
commit | 8842c356aa98869e3d80b10cad5d5aeee22d5569 (patch) | |
tree | 2218137a22ed0b073e812c8dc60be3a71fd056b7 /Doc | |
parent | bffd62ee0c68210ea3c83b1f0fb413a33227933a (diff) | |
download | cpython-8842c356aa98869e3d80b10cad5d5aeee22d5569.zip cpython-8842c356aa98869e3d80b10cad5d5aeee22d5569.tar.gz cpython-8842c356aa98869e3d80b10cad5d5aeee22d5569.tar.bz2 |
Revert r80580 due to some unintended side effects. See issue #8202 for details.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/cmdline.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index d458ddb..8251a23 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -95,9 +95,8 @@ source. file is not available. If this option is given, the first element of :data:`sys.argv` will be the - full path to the module file (while the module file is being located, the - first element will be set to ``"-m"``). As with the :option:`-c` option, - the current directory will be added to the start of :data:`sys.path`. + full path to the module file. As with the :option:`-c` option, the current + directory will be added to the start of :data:`sys.path`. Many standard library modules contain code that is invoked on their execution as a script. An example is the :mod:`timeit` module:: |