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

Method __init__

Lib/tkinter/simpledialog.py:382–388  ·  view source on GitHub ↗
(self, *args, **kw)

Source from the content-addressed store, hash-verified

380
381class _QueryString(_QueryDialog):
382 def __init__(self, *args, **kw):
383 if "show" in kw:
384 self.__show = kw["show"]
385 del kw["show"]
386 else:
387 self.__show = None
388 _QueryDialog.__init__(self, *args, **kw)
389
390 def body(self, master):
391 entry = _QueryDialog.body(self, master)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected