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

Method do_step

Lib/pdb.py:1881–1892  ·  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

1879 do_unt = do_until
1880
1881 def do_step(self, arg):
1882 """s(tep)
1883
1884 Execute the current line, stop at the first possible occasion
1885 (either in a function that is called or in the current
1886 function).
1887 """
1888 if arg:
1889 self._print_invalid_arg(arg)
1890 return
1891 self.set_step()
1892 return 1
1893 do_s = do_step
1894
1895 def do_next(self, arg):

Callers

nothing calls this directly

Calls 2

_print_invalid_argMethod · 0.95
set_stepMethod · 0.45

Tested by

no test coverage detected