MCPcopy
hub / github.com/sanic-org/sanic / full

Method full

sanic/errorpages.py:235–237  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

233 """Render an exception as JSON."""
234
235 def full(self) -> HTTPResponse:
236 output = self._generate_output(full=True)
237 return json(output, dumps=self.dumps)
238
239 def minimal(self) -> HTTPResponse:
240 output = self._generate_output(full=False)

Callers

nothing calls this directly

Calls 2

_generate_outputMethod · 0.95
jsonFunction · 0.85

Tested by

no test coverage detected