Starts an interactive debugger at the point where called. This is similar to the pdb.set_trace() function from the std lib, but using IPython's enhanced debugger.
(self)
| 165 | self.debugger = Pdb(colors) |
| 166 | |
| 167 | def __call__(self): |
| 168 | """Starts an interactive debugger at the point where called. |
| 169 | |
| 170 | This is similar to the pdb.set_trace() function from the std lib, but |
| 171 | using IPython's enhanced debugger.""" |
| 172 | |
| 173 | self.debugger.set_trace(sys._getframe().f_back) |
| 174 | |
| 175 | |
| 176 | RGX_EXTRA_INDENT = re.compile(r'(?<=\n)\s+') |
nothing calls this directly
no outgoing calls
no test coverage detected