From: Neal Norwitz Date: Sat, 30 Nov 2002 18:49:10 +0000 (+0000) Subject: Add missing self for method call X-Git-Tag: v2.3c1~3184 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4c4f115d80a26eb83d90593c24a1580f236c443;p=thirdparty%2FPython%2Fcpython.git Add missing self for method call --- diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 3fc814b4c169..28dc2562bfc9 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -516,7 +516,7 @@ class ModifiedInterpreter(InteractiveInterpreter): "Run the code without invoking the debugger" # The code better not raise an exception! if self.tkconsole.executing: - display_executing_dialog() + self.display_executing_dialog() return 0 if self.rpcclt: self.rpcclt.remotecall("exec", "runcode", (code,), {}) @@ -527,7 +527,7 @@ class ModifiedInterpreter(InteractiveInterpreter): def runcode(self, code): "Override base class method" if self.tkconsole.executing: - display_executing_dialog() + self.display_executing_dialog() return self.checklinecache() if self.save_warnings_filters is not None: