MCPcopy
hub / github.com/mitmproxy/mitmproxy / __str__

Method __str__

mitmproxy/dns.py:299–307  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

297 """The time at which the message was sent or received."""
298
299 def __str__(self) -> str:
300 return "\r\n".join(
301 map(
302 str,
303 itertools.chain(
304 self.questions, self.answers, self.authorities, self.additionals
305 ),
306 )
307 )
308
309 @property
310 def content(self) -> bytes:

Callers

nothing calls this directly

Calls 2

mapFunction · 0.50
joinMethod · 0.45

Tested by

no test coverage detected