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

Method do_continue

Lib/pdb.py:1947–1966  ·  view source on GitHub ↗

c(ont(inue)) Continue execution, only stop when a breakpoint is encountered.

(self, arg)

Source from the content-addressed store, hash-verified

1945 do_r = do_return
1946
1947 def do_continue(self, arg):
1948 """c(ont(inue))
1949
1950 Continue execution, only stop when a breakpoint is encountered.
1951 """
1952 if arg:
1953 self._print_invalid_arg(arg)
1954 return
1955 if not self.nosigint:
1956 try:
1957 Pdb._previous_sigint_handler = \
1958 signal.signal(signal.SIGINT, self.sigint_handler)
1959 except ValueError:
1960 # ValueError happens when do_continue() is invoked from
1961 # a non-main thread in which case we just continue without
1962 # SIGINT set. Would printing a message here (once) make
1963 # sense?
1964 pass
1965 self.set_continue()
1966 return 1
1967 do_c = do_cont = do_continue
1968
1969 def do_jump(self, arg):

Callers

nothing calls this directly

Calls 2

_print_invalid_argMethod · 0.95
set_continueMethod · 0.45

Tested by

no test coverage detected