MCPcopy Create free account
hub / github.com/hugapi/hug / trace

Method trace

hug/routing.py:543–547  ·  view source on GitHub ↗

Sets the acceptable HTTP method to TRACE

(self, urls=None, **overrides)

Source from the content-addressed store, hash-verified

541 return self.where(accept="PUT", **overrides)
542
543 def trace(self, urls=None, **overrides):
544 """Sets the acceptable HTTP method to TRACE"""
545 if urls is not None:
546 overrides["urls"] = urls
547 return self.where(accept="TRACE", **overrides)
548
549 def patch(self, urls=None, **overrides):
550 """Sets the acceptable HTTP method to PATCH"""

Callers

nothing calls this directly

Calls 1

whereMethod · 0.95

Tested by

no test coverage detected