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

Method do_step

Lib/pdb.py:1008–1015  ·  view source on GitHub ↗

s(tep) Execute the current line, stop at the first possible occasion (either in a function that is called or in the current function).

(self, arg)

Source from the content-addressed store, hash-verified

1006 do_unt = do_until
1007
1008 def do_step(self, arg):
1009 """s(tep)
1010 Execute the current line, stop at the first possible occasion
1011 (either in a function that is called or in the current
1012 function).
1013 """
1014 self.set_step()
1015 return 1
1016 do_s = do_step
1017
1018 def do_next(self, arg):

Callers

nothing calls this directly

Calls 1

set_stepMethod · 0.80

Tested by

no test coverage detected