patch(path, data='', content_type='application/octet-stream', follow=False, secure=False, **extra)
[source]
Makes a PATCH request on the provided path
and returns a Response
object. Useful for testing RESTful interfaces.
The follow
, secure
and extra
arguments act the same as for Client.get()
.
Please login to continue.