test_whitespace_eater_unicode(): Make this test Python 2.1 compatible.
[python/dscho.git] / Lib / idlelib / CallTips.py
blob3f247d487f2cb11e1221a82cbb66c61842d60911
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.
9 """
10 import sys
11 import string
12 import types
14 import CallTipWindow
16 import __main__
18 class CallTips:
20 menudefs = [
23 def __init__(self, editwin=None):
24 if editwin == None: # subprocess and test
25 self.editwin = None
26 return
27 self.editwin = editwin
28 self.text = editwin.text
29 self.calltip = None
30 self._make_calltip_window = self._make_tk_calltip_window
32 def close(self):
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):
40 if self.calltip:
41 self.calltip.hidetip()
42 self.calltip = None
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)
48 if arg_text:
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):
61 if self.calltip:
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
67 + " lineend"):
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")
80 i = len(str)
81 while i and str[i-1] in idchars:
82 i -= 1
83 return str[i:]
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.
96 """
97 try:
98 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
99 except:
100 rpcclt = None
101 if rpcclt:
102 return rpcclt.remotecall("exec", "get_the_calltip",
103 (name,), {})
104 else:
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__"
110 if name:
111 namespace = sys.modules.copy()
112 namespace.update(__main__.__dict__)
113 try:
114 return eval(name, namespace)
115 except:
116 return None
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.
121 try:
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
127 return None
129 def get_arg_text(ob):
130 "Get a string describing the arguments for the given object"
131 argText = ""
132 if ob is not None:
133 argOffset = 0
134 if type(ob)==types.ClassType:
135 # Look for the highest __init__ in the class chain.
136 fob = _find_constructor(ob)
137 if fob is None:
138 fob = lambda: None
139 else:
140 argOffset = 1
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.
144 fob = ob.im_func
145 argOffset = 1
146 else:
147 fob = ob
148 # Try and build one for Python defined functions
149 if type(fob) in [types.FunctionType, types.LambdaType]:
150 try:
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:
157 items.append("...")
158 if fob.func_code.co_flags & 0x8:
159 items.append("***")
160 argText = ", ".join(items)
161 argText = "(%s)" % argText
162 except:
163 pass
164 # See if we can use the docstring
165 doc = getattr(ob, "__doc__", "")
166 if doc:
167 while doc[:1] in " \t\n":
168 doc = doc[1:]
169 pos = doc.find("\n")
170 if pos < 0 or pos > 70:
171 pos = 70
172 if argText:
173 argText += "\n"
174 argText += doc[:pos]
175 return argText
177 #################################################
179 # Test code
181 if __name__=='__main__':
183 def t1(): "()"
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, ..., ***)"
190 class TC:
191 "(a=None, ...)"
192 def __init__(self, a=None, *b): "(a=None, ...)"
193 def t1(self): "()"
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, ..., ***)"
200 def test(tests):
201 ct = CallTips()
202 failed=[]
203 for t in tests:
204 expected = t.__doc__ + "\n" + t.__doc__
205 name = t.__name__
206 arg_text = ct.fetch_tip(name)
207 if arg_text != expected:
208 failed.append(t)
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))
213 tc = TC()
214 tests = (t1, t2, t3, t4, t5, t6,
215 TC, tc.t1, tc.t2, tc.t3, tc.t4, tc.t5, tc.t6)
217 test(tests)