(self, *args, pt_session_options=None, **kwargs)
| 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 |