MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/tkinter/simpledialog.py:272–283  ·  view source on GitHub ↗
(self, title, prompt,
                 initialvalue=None,
                 minvalue = None, maxvalue = None,
                 parent = None)

Source from the content-addressed store, hash-verified

270class _QueryDialog(Dialog):
271
272 def __init__(self, title, prompt,
273 initialvalue=None,
274 minvalue = None, maxvalue = None,
275 parent = None):
276
277 self.prompt = prompt
278 self.minvalue = minvalue
279 self.maxvalue = maxvalue
280
281 self.initialvalue = initialvalue
282
283 Dialog.__init__(self, parent, title)
284
285 def destroy(self):
286 self.entry = None

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected