Lines Matching full:prompt
174 def __init__(self, title, prompt,
183 self.prompt = prompt
197 w = Label(master, text=self.prompt, justify=LEFT)
251 def askinteger(title, prompt, **kw):
257 prompt -- the label text
262 d = _QueryInteger(title, prompt, **kw)
270 def askfloat(title, prompt, **kw):
276 prompt -- the label text
281 d = _QueryFloat(title, prompt, **kw)
302 def askstring(title, prompt, **kw):
308 prompt -- the label text
313 d = _QueryString(title, prompt, **kw)