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

Method user_call

Lib/pdb.py:253–260  ·  view source on GitHub ↗

This method is called when there is the remote possibility that we ever need to stop in this function.

(self, frame, argument_list)

Source from the content-addressed store, hash-verified

251 # Override Bdb methods
252
253 def user_call(self, frame, argument_list):
254 """This method is called when there is the remote possibility
255 that we ever need to stop in this function."""
256 if self._wait_for_mainpyfile:
257 return
258 if self.stop_here(frame):
259 self.message('--Call--')
260 self.interaction(frame, None)
261
262 def user_line(self, frame):
263 """This function is called when we stop or break at this line."""

Callers

nothing calls this directly

Calls 3

messageMethod · 0.95
interactionMethod · 0.95
stop_hereMethod · 0.80

Tested by

no test coverage detected