From: Guido van Rossum Date: Mon, 28 Sep 1998 15:33:38 +0000 (+0000) Subject: Don't set a local variable named __args__; this feature no longer X-Git-Tag: v1.5.2a2~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75bb54c3d8;p=thirdparty%2FPython%2Fcpython.git Don't set a local variable named __args__; this feature no longer works and Greg Ward just reported a problem it caused... --- diff --git a/Lib/bdb.py b/Lib/bdb.py index 3ca25adbbf52..f2cf4caa36fc 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -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