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

Method __repr__

IPython/lib/tests/test_pretty.py:457–458  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

455 'Counter that remembers the order elements are first encountered'
456
457 def __repr__(self):
458 return '%s(%r)' % (self.__class__.__name__, OrderedDict(self))
459
460 def __reduce__(self):
461 return self.__class__, (OrderedDict(self),)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected