diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2010-04-28 14:51:08 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2010-04-28 14:51:08 (GMT) |
commit | c5e448524818df5858e1fe98ce81aeb5ca3a14c4 (patch) | |
tree | 27b36363e476e8cee3ff8dcb0e73326eb552c4eb /Misc | |
parent | 54677da895fdb4a58b15cf46cadd0659db6eb3e9 (diff) | |
download | cpython-c5e448524818df5858e1fe98ce81aeb5ca3a14c4.zip cpython-c5e448524818df5858e1fe98ce81aeb5ca3a14c4.tar.gz cpython-c5e448524818df5858e1fe98ce81aeb5ca3a14c4.tar.bz2 |
Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' instead of '-c' while searching for the module to be executed
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.7 beta 2? Core and Builtins ----------------- +- Issue #8202: sys.argv[0] is now set to '-m' instead of '-c' when + searching for the module file to be executed with the -m command + line option + - Issue #7319: When -Q is used, do not silence DeprecationWarning. - Issue #7332: Remove the 16KB stack-based buffer in |