For backwards-compatibility. Defers to run().
(self, cmd, globals, locals)
| 938 | self.stop_trace() |
| 939 | |
| 940 | def runctx(self, cmd, globals, locals): |
| 941 | """For backwards-compatibility. Defers to run().""" |
| 942 | # B/W compatibility |
| 943 | self.run(cmd, globals, locals) |
| 944 | |
| 945 | # This method is more useful to debug a single function call. |
| 946 |