* 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
This commit is contained in:
Guido van Rossum 1993-12-14 15:54:01 +00:00
parent 6930b3d18d
commit 79c85f1778
4 changed files with 27 additions and 1 deletions

View file

@ -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)