Method
__init__
(self, title, prompt,
initialvalue=None,
minvalue = None, maxvalue = None,
parent = None)
Source from the content-addressed store, hash-verified
| 273 | class _QueryDialog(Dialog): |
| 274 | |
| 275 | def __init__(self, title, prompt, |
| 276 | initialvalue=None, |
| 277 | minvalue = None, maxvalue = None, |
| 278 | parent = None): |
| 279 | |
| 280 | self.prompt = prompt |
| 281 | self.minvalue = minvalue |
| 282 | self.maxvalue = maxvalue |
| 283 | |
| 284 | self.initialvalue = initialvalue |
| 285 | |
| 286 | Dialog.__init__(self, parent, title) |
| 287 | |
| 288 | def destroy(self): |
| 289 | self.entry = None |
Callers
nothing calls this directly
Tested by
no test coverage detected