diff options
author | Guido van Rossum <guido@python.org> | 1993-12-14 15:54:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-14 15:54:01 (GMT) |
commit | 79c85f1778c31ebdae09d2e2802e15e7d4f237b9 (patch) | |
tree | 93c7c6f1fe76c63b9400b4ee55d4d8bedb79bfb8 /Lib/lib-stdwin | |
parent | 6930b3d18da1ce43d5a0c8099df66b8c59490465 (diff) | |
download | cpython-79c85f1778c31ebdae09d2e2802e15e7d4f237b9.zip cpython-79c85f1778c31ebdae09d2e2802e15e7d4f237b9.tar.gz cpython-79c85f1778c31ebdae09d2e2802e15e7d4f237b9.tar.bz2 |
* wdbframewin.py (re_eval): set __privileged__ in globals so private
variables can still be seen by the debugger
* ftplib.py (retrlines): args should be *args.
* ChangeLog: entries for Sjoerd's addition sunau.py and changes to aiff.py
* test_md5.py: test program for built-in md5 module
Diffstat (limited to 'Lib/lib-stdwin')
-rw-r--r-- | Lib/lib-stdwin/wdbframewin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/lib-stdwin/wdbframewin.py b/Lib/lib-stdwin/wdbframewin.py index db3d137..f8b84e3 100644 --- a/Lib/lib-stdwin/wdbframewin.py +++ b/Lib/lib-stdwin/wdbframewin.py @@ -94,6 +94,7 @@ class FrameWindow(basewin.BaseWindow): output = '' else: globals = self.frame.f_globals + globals['__privileged__'] = 1 locals = self.dict try: value = eval(expr, globals, locals) |