MCPcopy Index your code
hub / github.com/python/cpython / runctx

Method runctx

Lib/bdb.py:931–934  ·  view source on GitHub ↗

For backwards-compatibility. Defers to run().

(self, cmd, globals, locals)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

runMethod · 0.95

Tested by

no test coverage detected