MCPcopy Create free account
hub / github.com/pallets/quart / trace

Method trace

src/quart/testing/client.py:272–278  ·  view source on GitHub ↗

Make a TRACE request. See :meth:`~quart.testing.QuartClient.open` for argument details.

(self, *args: Any, **kwargs: Any)

Source from the content-addressed store, hash-verified

270 return await self.open(*args, method="PUT", **kwargs)
271
272 async def trace(self, *args: Any, **kwargs: Any) -> Response:
273 """Make a TRACE request.
274
275 See :meth:`~quart.testing.QuartClient.open` for argument
276 details.
277 """
278 return await self.open(*args, method="TRACE", **kwargs)
279
280 def set_cookie(
281 self,

Callers

nothing calls this directly

Calls 1

openMethod · 0.95

Tested by

no test coverage detected