MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

273class _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

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected