For backwards-compatibility. Defers to run().
(self, cmd, globals, locals)
| 929 | self.stop_trace() |
| 930 | |
| 931 | def runctx(self, cmd, globals, locals): |
| 932 | """For backwards-compatibility. Defers to run().""" |
| 933 | # B/W compatibility |
| 934 | self.run(cmd, globals, locals) |
| 935 | |
| 936 | # This method is more useful to debug a single function call. |
| 937 |