summaryrefslogtreecommitdiffstats
path: root/Lib/lib-old
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib-old')
-rw-r--r--Lib/lib-old/tb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/lib-old/tb.py b/Lib/lib-old/tb.py
index 0442ba8..641e8af 100644
--- a/Lib/lib-old/tb.py
+++ b/Lib/lib-old/tb.py
@@ -1,5 +1,6 @@
# Print tracebacks, with a dump of local variables.
# Also an interactive stack trace browser.
+# Note -- this module is obsolete -- use pdb.pm() instead.
import sys
import os
@@ -71,7 +72,7 @@ def browserexec(tb, cmd):
locals = tb.tb_frame.f_locals
globals = tb.tb_frame.f_globals
try:
- exec(cmd+'\n', globals, locals)
+ exec cmd+'\n' in globals, locals
except:
print '*** Exception:',
if type(sys.exc_type) == type(''):