Home | History | Annotate | Download | only in lib-tk

Lines Matching defs:QUESTION

33 QUESTION = "question"
94 "Ask a question"
95 return _show(title, message, QUESTION, YESNO, **options)
99 s = _show(title, message, QUESTION, OKCANCEL, **options)
103 "Ask a question; return true if the answer is yes"
104 s = _show(title, message, QUESTION, YESNO, **options)
108 "Ask a question; return true if the answer is yes, None if cancelled."
109 s = _show(title, message, QUESTION, YESNOCANCEL, **options)
130 print "question", askquestion("Spam", "Question?")