1 """CallTips.py - An IDLE Extension to Jog Your Memory
3 Call Tips are floating windows which display function, class, and method
4 parameter and docstring information when you type an opening parenthesis, and
5 which disappear when you type a closing parenthesis.
7 Future plans include extending the functionality to include class attributes.
23 def __init__(self
, editwin
=None):
24 if editwin
== None: # subprocess and test
27 self
.editwin
= editwin
28 self
.text
= editwin
.text
30 self
._make
_calltip
_window
= self
._make
_tk
_calltip
_window
33 self
._make
_calltip
_window
= None
35 def _make_tk_calltip_window(self
):
36 # See __init__ for usage
37 return CallTipWindow
.CallTip(self
.text
)
39 def _remove_calltip_window(self
):
41 self
.calltip
.hidetip()
44 def paren_open_event(self
, event
):
45 self
._remove
_calltip
_window
()
46 name
= self
.get_name_at_cursor()
47 arg_text
= self
.fetch_tip(name
)
49 self
.calltip_start
= self
.text
.index("insert")
50 self
.calltip
= self
._make
_calltip
_window
()
51 self
.calltip
.showtip(arg_text
)
52 return "" #so the event is handled normally.
54 def paren_close_event(self
, event
):
55 # Now just hides, but later we should check if other
56 # paren'd expressions remain open.
57 self
._remove
_calltip
_window
()
58 return "" #so the event is handled normally.
60 def check_calltip_cancel_event(self
, event
):
62 # If we have moved before the start of the calltip,
63 # or off the calltip line, then cancel the tip.
64 # (Later need to be smarter about multi-line, etc)
65 if self
.text
.compare("insert", "<=", self
.calltip_start
) or \
66 self
.text
.compare("insert", ">", self
.calltip_start
68 self
._remove
_calltip
_window
()
69 return "" #so the event is handled normally.
71 def calltip_cancel_event(self
, event
):
72 self
._remove
_calltip
_window
()
73 return "" #so the event is handled normally.
75 __IDCHARS
= "._" + string
.ascii_letters
+ string
.digits
77 def get_name_at_cursor(self
):
78 idchars
= self
.__IDCHARS
79 str = self
.text
.get("insert linestart", "insert")
81 while i
and str[i
-1] in idchars
:
85 def fetch_tip(self
, name
):
86 """Return the argument list and docstring of a function or class
88 If there is a Python subprocess, get the calltip there. Otherwise,
89 either fetch_tip() is running in the subprocess itself or it was called
90 in an IDLE EditorWindow before any script had been run.
92 The subprocess environment is that of the most recently run script. If
93 two unrelated modules are being edited some calltips in the current
94 module may be inoperative if the module was not the last to run.
98 rpcclt
= self
.editwin
.flist
.pyshell
.interp
.rpcclt
102 return rpcclt
.remotecall("exec", "get_the_calltip",
105 entity
= self
.get_entity(name
)
106 return get_arg_text(entity
)
108 def get_entity(self
, name
):
109 "Lookup name in a namespace spanning sys.modules and __main.dict__"
111 namespace
= sys
.modules
.copy()
112 namespace
.update(__main__
.__dict
__)
114 return eval(name
, namespace
)
118 def _find_constructor(class_ob
):
119 # Given a class object, return a function object used for the
120 # constructor (ie, __init__() ) or None if we can't find one.
122 return class_ob
.__init
__.im_func
123 except AttributeError:
124 for base
in class_ob
.__bases
__:
125 rc
= _find_constructor(base
)
126 if rc
is not None: return rc
129 def get_arg_text(ob
):
130 "Get a string describing the arguments for the given object"
134 if type(ob
)==types
.ClassType
:
135 # Look for the highest __init__ in the class chain.
136 fob
= _find_constructor(ob
)
141 elif type(ob
)==types
.MethodType
:
142 # bit of a hack for methods - turn it into a function
143 # but we drop the "self" param.
148 # Try and build one for Python defined functions
149 if type(fob
) in [types
.FunctionType
, types
.LambdaType
]:
151 realArgs
= fob
.func_code
.co_varnames
[argOffset
:fob
.func_code
.co_argcount
]
152 defaults
= fob
.func_defaults
or []
153 defaults
= list(map(lambda name
: "=%s" % name
, defaults
))
154 defaults
= [""] * (len(realArgs
)-len(defaults
)) + defaults
155 items
= map(lambda arg
, dflt
: arg
+dflt
, realArgs
, defaults
)
156 if fob
.func_code
.co_flags
& 0x4:
158 if fob
.func_code
.co_flags
& 0x8:
160 argText
= ", ".join(items
)
161 argText
= "(%s)" % argText
164 # See if we can use the docstring
165 doc
= getattr(ob
, "__doc__", "")
167 while doc
[:1] in " \t\n":
170 if pos
< 0 or pos
> 70:
177 #################################################
181 if __name__
=='__main__':
184 def t2(a
, b
=None): "(a, b=None)"
185 def t3(a
, *args
): "(a, ...)"
186 def t4(*args
): "(...)"
187 def t5(a
, *args
): "(a, ...)"
188 def t6(a
, b
=None, *args
, **kw
): "(a, b=None, ..., ***)"
192 def __init__(self
, a
=None, *b
): "(a=None, ...)"
194 def t2(self
, a
, b
=None): "(a, b=None)"
195 def t3(self
, a
, *args
): "(a, ...)"
196 def t4(self
, *args
): "(...)"
197 def t5(self
, a
, *args
): "(a, ...)"
198 def t6(self
, a
, b
=None, *args
, **kw
): "(a, b=None, ..., ***)"
204 expected
= t
.__doc
__ + "\n" + t
.__doc
__
206 arg_text
= ct
.fetch_tip(name
)
207 if arg_text
!= expected
:
209 print "%s - expected %s, but got %s" % (t
, expected
,
210 get_arg_text(entity
))
211 print "%d of %d tests failed" % (len(failed
), len(tests
))
214 tests
= (t1
, t2
, t3
, t4
, t5
, t6
,
215 TC
, tc
.t1
, tc
.t2
, tc
.t3
, tc
.t4
, tc
.t5
, tc
.t6
)