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

Method head

rest_framework/decorators.py:282–283  ·  view source on GitHub ↗
(self, func)

Source from the content-addressed store, hash-verified

280 return self._map('delete', func)
281
282 def head(self, func):
283 return self._map('head', func)
284
285 def options(self, func):
286 return self._map('options', func)

Calls 1

_mapMethod · 0.95