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

Method __init__

21-async/mojifinder/bottle.py:1719–1723  ·  view source on GitHub ↗
(self, status=None, body=None, exception=None, traceback=None,
                 **options)

Source from the content-addressed store, hash-verified

1717class HTTPError(HTTPResponse):
1718 default_status = 500
1719 def __init__(self, status=None, body=None, exception=None, traceback=None,
1720 **options):
1721 self.exception = exception
1722 self.traceback = traceback
1723 super(HTTPError, self).__init__(body, status, **options)
1724
1725
1726

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected