MCPcopy Index your code
hub / github.com/python/cpython / user_call

Method user_call

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

555 # Override Bdb methods
556
557 def user_call(self, frame, argument_list):
558 """This method is called when there is the remote possibility
559 that we ever need to stop in this function."""
560 if self._wait_for_mainpyfile:
561 return
562 if self.stop_here(frame):
563 self.message('--Call--')
564 self.interaction(frame, None)
565
566 def user_line(self, frame):
567 """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