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

Method options

src/quart/testing/client.py:240–246  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

238 return await self.open(*args, method="HEAD", **kwargs)
239
240 async def options(self, *args: Any, **kwargs: Any) -> Response:
241 """Make a OPTIONS request.
242
243 See :meth:`~quart.testing.QuartClient.open` for argument
244 details.
245 """
246 return await self.open(*args, method="OPTIONS", **kwargs)
247
248 async def patch(self, *args: Any, **kwargs: Any) -> Response:
249 """Make a PATCH request.

Callers

nothing calls this directly

Calls 1

openMethod · 0.95

Tested by

no test coverage detected