MCPcopy Index your code
hub / github.com/fluentpython/example-code-2e / abort

Function abort

21-async/mojifinder/bottle.py:2426–2428  ·  view source on GitHub ↗

Aborts execution and causes a HTTP error.

(code=500, text='Unknown Error.')

Source from the content-addressed store, hash-verified

2424
2425
2426def abort(code=500, text='Unknown Error.'):
2427 """ Aborts execution and causes a HTTP error. """
2428 raise HTTPError(code, text)
2429
2430
2431def redirect(url, code=None):

Callers 1

templateFunction · 0.85

Calls 1

HTTPErrorClass · 0.85

Tested by

no test coverage detected