Lines Matching refs:kw
251 def askinteger(title, prompt, **kw):
258 **kw -- see SimpleDialog class
262 d = _QueryInteger(title, prompt, **kw)
270 def askfloat(title, prompt, **kw):
277 **kw -- see SimpleDialog class
281 d = _QueryFloat(title, prompt, **kw)
285 def __init__(self, *args, **kw):
286 if "show" in kw:
287 self.__show = kw["show"]
288 del kw["show"]
291 _QueryDialog.__init__(self, *args, **kw)
302 def askstring(title, prompt, **kw):
309 **kw -- see SimpleDialog class
313 d = _QueryString(title, prompt, **kw)