From: Kurt B. Kaiser Date: Thu, 12 Jul 2001 23:10:35 +0000 (+0000) Subject: py-cvs-rel2_1 (Rev 1.8) merge - whitespace normalization X-Git-Tag: v2.2a3~1231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae67647ab720cb10929bfee42096efe98f96bdd7;p=thirdparty%2FPython%2Fcpython.git py-cvs-rel2_1 (Rev 1.8) merge - whitespace normalization --- diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py index 04eccde0b401..7c5f41c73d55 100644 --- a/Lib/idlelib/CallTips.py +++ b/Lib/idlelib/CallTips.py @@ -45,7 +45,7 @@ class CallTips: if self.calltip: self.calltip.hidetip() self.calltip = None - + def paren_open_event(self, event): self._remove_calltip_window() arg_text = get_arg_text(self.get_object_at_cursor()) @@ -91,9 +91,9 @@ class CallTips: namespace = sys.modules.copy() namespace.update(__main__.__dict__) try: - return eval(word, namespace) + return eval(word, namespace) except: - pass + pass return None # Can't find an object. def _find_constructor(class_ob):