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