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

Method user_exception

Lib/bdb.py:1191–1193  ·  view source on GitHub ↗
(self, frame, exc_stuff)

Source from the content-addressed store, hash-verified

1189 def user_return(self, frame, retval):
1190 print('+++ return', retval)
1191 def user_exception(self, frame, exc_stuff):
1192 print('+++ exception', exc_stuff)
1193 self.set_continue()
1194
1195def foo(n):
1196 print('foo(', n, ')')

Callers

nothing calls this directly

Calls 2

printFunction · 0.50
set_continueMethod · 0.45

Tested by

no test coverage detected