MCPcopy
hub / github.com/tornadoweb/tornado / __str__

Method __str__

tornado/httputil.py:378–382  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

376 __copy__ = copy
377
378 def __str__(self) -> str:
379 lines = []
380 for name, value in self.get_all():
381 lines.append(f"{name}: {value}\n")
382 return "".join(lines)
383
384 __unicode__ = __str__
385

Callers

nothing calls this directly

Calls 3

get_allMethod · 0.95
appendMethod · 0.80
joinMethod · 0.80

Tested by

no test coverage detected