diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2009-02-08 01:58:26 +0000 |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2009-02-08 01:58:26 +0000 |
commit | 3f48ae35c710c5e5101d5de6721b1e2ccb56df68 (patch) | |
tree | 971feab37df37b7ab70429c75069d36b2c8b9557 /Misc | |
parent | f72d9fb02f2ff536c64f1e65780b4a414eb3bb4d (diff) | |
download | cpython-git-3f48ae35c710c5e5101d5de6721b1e2ccb56df68.tar.gz |
Merged revisions 69419-69420 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69419 | nick.coghlan | 2009-02-08 11:26:34 +1000 (Sun, 08 Feb 2009) | 1 line
Issue 4195: Restore the ability to execute packages with the -m switch (but this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda)
........
r69420 | nick.coghlan | 2009-02-08 11:46:01 +1000 (Sun, 08 Feb 2009) | 1 line
Mention patch submitter in NEWS entry for r69419
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -714,6 +714,7 @@ Lionel Ulmer Roger Upole Michael Urman Hector Urtubia +Andi Vajda Atul Varma Dmitry Vasiliev Alexandre Vassalotti @@ -155,6 +155,11 @@ Core and Builtins Library ------- +- Issue #4195: The ``runpy`` module (and the ``-m`` switch) now support + the execution of packages by looking for and executing a ``__main__`` + submodule when a package name is supplied. Initial patch by Andi + Vajda. + - Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will not be used again (this requires Tcl/Tk 8.3.1), also fix a memory leak in Tkapp_Call when calling from a thread different than the one that created |