From: Kurt B. Kaiser Date: Tue, 23 Aug 2005 03:25:38 +0000 (+0000) Subject: Revert previous code elimination, 'filename' is needed. X-Git-Tag: v2.5a0~1487 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0cd233f4875d042ce74b41e368e6dacbbb47ff45;p=thirdparty%2FPython%2Fcpython.git Revert previous code elimination, 'filename' is needed. --- diff --git a/Lib/idlelib/ScriptBinding.py b/Lib/idlelib/ScriptBinding.py index 16fd14dccf4c..084c60701e57 100644 --- a/Lib/idlelib/ScriptBinding.py +++ b/Lib/idlelib/ScriptBinding.py @@ -53,7 +53,7 @@ class ScriptBinding: self.flist = self.editwin.flist self.root = self.flist.root - def check_module_event(self, event=None): + def check_module_event(self, event): filename = self.getfilename() if not filename: return @@ -133,7 +133,12 @@ class ScriptBinding: add that directory to its sys.path if not already included. """ - code = self.check_module_event(event) + filename = self.getfilename() + if not filename: + return + if not self.tabnanny(filename): + return + code = self.checksyntax(filename) if not code: return shell = self.shell