summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2001-07-12 23:10:35 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2001-07-12 23:10:35 (GMT)
commitae67647ab720cb10929bfee42096efe98f96bdd7 (patch)
treec25e2b25f289f8cb2d13cf6f8bd7c7d947180f5b
parenta1d545523d5805f6e826164f229d0fedcb617574 (diff)
downloadcpython-ae67647ab720cb10929bfee42096efe98f96bdd7.zip
cpython-ae67647ab720cb10929bfee42096efe98f96bdd7.tar.gz
cpython-ae67647ab720cb10929bfee42096efe98f96bdd7.tar.bz2
py-cvs-rel2_1 (Rev 1.8) merge - whitespace normalization
-rw-r--r--Lib/idlelib/CallTips.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/CallTips.py b/Lib/idlelib/CallTips.py
index 04eccde..7c5f41c 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):