MCPcopy Create free account
hub / github.com/RustPython/RustPython / __repr__

Method __repr__

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

Source from the content-addressed store, hash-verified

53 name, self.__class__.__name__))
54
55 def __repr__(self):
56 args = [ "{}={!r}".format(name, value)
57 for name, value in self.__dict__.items() ]
58 return "{}({})".format(self.__class__.__name__, ', '.join(args))
59
60 def clone(self, **kw):
61 """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