c(ont(inue)) Continue execution, only stop when a breakpoint is encountered.
(self, arg)
| 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): |
nothing calls this directly
no test coverage detected