commit | c2047c19f5afa001261cad45b0ada852450b35bb | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Oct 15 01:38:23 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Oct 15 01:38:23 1998 +0000 |
tree | 435bfd8f94a849f7359c44b9698a1de3b1390176 | |
parent | e0e59829e006ddf670d0cbffa9b9d00b71227d70 [diff] |
When run as a script, don't pass a fake __main__ dictionary; use the real one.
diff --git a/Lib/pdb.py b/Lib/pdb.py index de769bb..fae6b2c 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py
@@ -893,4 +893,4 @@ # Insert script directory in front of module search path sys.path.insert(0, os.path.dirname(filename)) - run('execfile(' + `filename` + ')', {'__name__': '__main__'}) + run('execfile(' + `filename` + ')')