commit | 01e397975795bdb102221fb5e977fef052cc88f3 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Oct 13 01:04:36 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Oct 13 01:04:36 2010 +0000 |
tree | 1172c42bdc63b1ad316677686e5b9f01a6e0e9f6 | |
parent | 73a3f2d4d432fafb3610003e761874ed5f61a72e [diff] [blame] |
account for the module __dict__ being cleared when its module is
diff --git a/Lib/runpy.py b/Lib/runpy.py index f251081..4738df3 100644 --- a/Lib/runpy.py +++ b/Lib/runpy.py
@@ -271,7 +271,7 @@ _ModifiedArgv0(path_name): mod_globals = temp_module.module.__dict__ return _run_code(code, mod_globals, init_globals, - run_name, fname, loader, pkg_name) + run_name, fname, loader, pkg_name).copy() finally: try: sys.path.remove(path_name)