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

Method __init__

Lib/pdb.py:321–323  ·  view source on GitHub ↗
(self, ns, message)

Source from the content-addressed store, hash-verified

319
320class _PdbInteractiveConsole(code.InteractiveConsole):
321 def __init__(self, ns, message):
322 self._message = message
323 super().__init__(locals=ns, local_exit=True)
324
325 def write(self, data):
326 self._message(data, end='')

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected