diff options
author | Guido van Rossum <guido@python.org> | 1998-09-28 15:33:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-09-28 15:33:38 (GMT) |
commit | 75bb54c3d86cd0207da00251d068947ef1d56db3 (patch) | |
tree | 20ec90c24ac96de07f2441cd42850bfa64505513 /Lib/bdb.py | |
parent | 9814a943a558cee1ae1e4f508cf8d56ac34ba14a (diff) | |
download | cpython-75bb54c3d86cd0207da00251d068947ef1d56db3.zip cpython-75bb54c3d86cd0207da00251d068947ef1d56db3.tar.gz cpython-75bb54c3d86cd0207da00251d068947ef1d56db3.tar.bz2 |
Don't set a local variable named __args__; this feature no longer
works and Greg Ward just reported a problem it caused...
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ class Bdb: # Basic Debugger return self.trace_dispatch def dispatch_call(self, frame, arg): - frame.f_locals['__args__'] = arg + # XXX 'arg' is no longer used if self.botframe is None: # First call of dispatch since reset() self.botframe = frame |