MCPcopy Index your code
hub / github.com/python/cpython / __repr__

Method __repr__

Lib/email/_policybase.py:64–67  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

62 name, self.__class__.__name__))
63
64 def __repr__(self):
65 args = [ "{}={!r}".format(name, value)
66 for name, value in self.__dict__.items() ]
67 return "{}({})".format(self.__class__.__name__, ', '.join(args))
68
69 def clone(self, **kw):
70 """Return a new instance with specified attributes changed.

Callers

nothing calls this directly

Calls 3

formatMethod · 0.45
itemsMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected