summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-08-10 19:43:04 (GMT)
committerGuido van Rossum <guido@python.org>1995-08-10 19:43:04 (GMT)
commita62b1003a67e9da5bbf92679a2b07c7ceab05c43 (patch)
tree5b670d2f30355008cf08e79674100fdf6177c523 /Lib
parent894a7bb9955233293b263897e52fa401240c030d (diff)
downloadcpython-a62b1003a67e9da5bbf92679a2b07c7ceab05c43.zip
cpython-a62b1003a67e9da5bbf92679a2b07c7ceab05c43.tar.gz
cpython-a62b1003a67e9da5bbf92679a2b07c7ceab05c43.tar.bz2
noted obsolescence; exec() -> exec
Diffstat (limited to 'Lib')
-rw-r--r--Lib/lib-old/tb.py3
-rw-r--r--Lib/tb.py3
2 files changed, 4 insertions, 2 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(''):
diff --git a/Lib/tb.py b/Lib/tb.py
index 0442ba8..641e8af 100644
--- a/Lib/tb.py
+++ b/Lib/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(''):