MCPcopy Index your code
hub / github.com/RustPython/RustPython / runctx

Method runctx

Lib/bdb.py:940–943  ·  view source on GitHub ↗

For backwards-compatibility. Defers to run().

(self, cmd, globals, locals)

Source from the content-addressed store, hash-verified

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

Callers 2

test_exec_countsMethod · 0.45
run_testMethod · 0.45

Calls 1

runMethod · 0.95

Tested by 1

test_exec_countsMethod · 0.36