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

Method __init__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected