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

Method do_continue

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

1050 do_r = do_return
1051
1052 def do_continue(self, arg):
1053 """c(ont(inue))
1054 Continue execution, only stop when a breakpoint is encountered.
1055 """
1056 if not self.nosigint:
1057 try:
1058 Pdb._previous_sigint_handler = \
1059 signal.signal(signal.SIGINT, self.sigint_handler)
1060 except ValueError:
1061 # ValueError happens when do_continue() is invoked from
1062 # a non-main thread in which case we just continue without
1063 # SIGINT set. Would printing a message here (once) make
1064 # sense?
1065 pass
1066 self.set_continue()
1067 return 1
1068 do_c = do_cont = do_continue
1069
1070 def do_jump(self, arg):

Callers

nothing calls this directly

Calls 1

set_continueMethod · 0.45

Tested by

no test coverage detected