Author: kurt.kaiser
Date: Sun Jul 22 05:27:08 2007
New Revision: 56486

Modified:
   python/branches/p3yk/Lib/idlelib/CallTips.py
Log:
Fix typo introduced at r55797


Modified: python/branches/p3yk/Lib/idlelib/CallTips.py
==============================================================================
--- python/branches/p3yk/Lib/idlelib/CallTips.py        (original)
+++ python/branches/p3yk/Lib/idlelib/CallTips.py        Sun Jul 22 05:27:08 2007
@@ -138,7 +138,7 @@
                 fob = lambda: None
             else:
                 arg_offset = 1
-        elif isinstace(ob, types.MethodType):
+        elif isinstance(ob, types.MethodType):
             # bit of a hack for methods - turn it into a function
             # but we drop the "self" param.
             fob = ob.im_func
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to