(self)
| 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),) |
nothing calls this directly
no outgoing calls
no test coverage detected