MCPcopy
hub / github.com/pallets/werkzeug / trace

Method trace

src/werkzeug/test.py:1194–1197  ·  view source on GitHub ↗

Call :meth:`open` with ``method`` set to ``TRACE``.

(self, *args: t.Any, **kw: t.Any)

Source from the content-addressed store, hash-verified

1192 return self.open(*args, **kw)
1193
1194 def trace(self, *args: t.Any, **kw: t.Any) -> TestResponse:
1195 """Call :meth:`open` with ``method`` set to ``TRACE``."""
1196 kw["method"] = "TRACE"
1197 return self.open(*args, **kw)
1198
1199 def __repr__(self) -> str:
1200 return f"<{type(self).__name__} {self.application!r}>"

Callers

nothing calls this directly

Calls 1

openMethod · 0.95

Tested by

no test coverage detected