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

Method user_call

Lib/test/test_bdb.py:200–207  ·  view source on GitHub ↗
(self, frame, argument_list)

Source from the content-addressed store, hash-verified

198 return super().trace_dispatch(frame, event, arg)
199
200 def user_call(self, frame, argument_list):
201 # Adopt the same behavior as pdb and, as a side effect, skip also the
202 # first 'call' event when the Tracer is started with Tracer.runcall()
203 # which may be possibly considered as a bug.
204 if not self.stop_here(frame):
205 return
206 self.process_event('call', frame, argument_list)
207 self.next_set_method()
208
209 def user_line(self, frame):
210 self.process_event('line', frame)

Callers

nothing calls this directly

Calls 3

process_eventMethod · 0.95
next_set_methodMethod · 0.95
stop_hereMethod · 0.80

Tested by

no test coverage detected