MCPcopy Index your code
hub / github.com/encode/django-rest-framework / put

Method put

rest_framework/generics.py:288–289  ·  view source on GitHub ↗
(self, request, *args, **kwargs)

Source from the content-addressed store, hash-verified

286 return self.retrieve(request, *args, **kwargs)
287
288 def put(self, request, *args, **kwargs):
289 return self.update(request, *args, **kwargs)
290
291 def patch(self, request, *args, **kwargs):
292 return self.partial_update(request, *args, **kwargs)

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected