MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / do_continue

Method do_continue

tools/python-3.11.9-amd64/Lib/pdb.py:1114–1129  ·  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

1112 do_r = do_return
1113
1114 def do_continue(self, arg):
1115 """c(ont(inue))
1116 Continue execution, only stop when a breakpoint is encountered.
1117 """
1118 if not self.nosigint:
1119 try:
1120 Pdb._previous_sigint_handler = \
1121 signal.signal(signal.SIGINT, self.sigint_handler)
1122 except ValueError:
1123 # ValueError happens when do_continue() is invoked from
1124 # a non-main thread in which case we just continue without
1125 # SIGINT set. Would printing a message here (once) make
1126 # sense?
1127 pass
1128 self.set_continue()
1129 return 1
1130 do_c = do_cont = do_continue
1131
1132 def do_jump(self, arg):

Callers

nothing calls this directly

Calls 1

set_continueMethod · 0.45

Tested by

no test coverage detected