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

Method patch

src/quart/testing/client.py:248–254  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

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.
250
251 See :meth:`~quart.testing.QuartClient.open` for argument
252 details.
253 """
254 return await self.open(*args, method="PATCH", **kwargs)
255
256 async def post(self, *args: Any, **kwargs: Any) -> Response:
257 """Make a POST request.

Callers

nothing calls this directly

Calls 1

openMethod · 0.95

Tested by

no test coverage detected