]> granicus.if.org Git - python/commitdiff
py-cvs-rel2_1 (Rev 1.8) merge - whitespace normalization
authorKurt B. Kaiser <kbk@shore.net>
Thu, 12 Jul 2001 23:10:35 +0000 (23:10 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Thu, 12 Jul 2001 23:10:35 +0000 (23:10 +0000)
Lib/idlelib/CallTips.py

index 04eccde0b401eaaf75a6a97efdc8e80d9c0ef364..7c5f41c73d55f1b72ad50f7195ddc5aeaa5ef33f 100644 (file)
@@ -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):