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

Method __init__

IPython/terminal/debugger.py:28–32  ·  view source on GitHub ↗
(self, *args, pt_session_options=None, **kwargs)

Source from the content-addressed store, hash-verified

26 """Standalone IPython debugger."""
27
28 def __init__(self, *args, pt_session_options=None, **kwargs):
29 Pdb.__init__(self, *args, **kwargs)
30 self._ptcomp = None
31 self.pt_init(pt_session_options)
32 self.thread_executor = ThreadPoolExecutor(1)
33
34 def pt_init(self, pt_session_options=None):
35 """Initialize the prompt session and the prompt loop

Callers

nothing calls this directly

Calls 1

pt_initMethod · 0.95

Tested by

no test coverage detected