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

Method do_quit

Lib/pdb.py:1122–1128  ·  view source on GitHub ↗

q(uit)\nexit Quit from the debugger. The program being executed is aborted.

(self, arg)

Source from the content-addressed store, hash-verified

1120 complete_debug = _complete_expression
1121
1122 def do_quit(self, arg):
1123 """q(uit)\nexit
1124 Quit from the debugger. The program being executed is aborted.
1125 """
1126 self._user_requested_quit = True
1127 self.set_quit()
1128 return 1
1129
1130 do_q = do_quit
1131 do_exit = do_quit

Callers

nothing calls this directly

Calls 1

set_quitMethod · 0.80

Tested by

no test coverage detected