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

Class _PdbInteractiveConsole

Lib/pdb.py:320–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318
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='')
327
328
329# Interaction prompt line will separate file and call info from code

Callers 1

do_interactMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…