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

Method user_exception

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

Source from the content-addressed store, hash-verified

1180 def user_return(self, frame, retval):
1181 print('+++ return', retval)
1182 def user_exception(self, frame, exc_stuff):
1183 print('+++ exception', exc_stuff)
1184 self.set_continue()
1185
1186def foo(n):
1187 print('foo(', n, ')')

Callers

nothing calls this directly

Calls 1

set_continueMethod · 0.45

Tested by

no test coverage detected