class documentation
class ReprStrMixin:
Mixin providing default __repr__ and __str__ implementations.
Classes contribute representation items by overriding _repr_items().
Subclasses should call super()._repr_items() and yield additional
(name, value) pairs.
| Method | __repr__ |
Return an unambiguous representation of the instance. |
| Method | __str__ |
Return a human-readable representation of the instance. |
| Method | _repr |
Yield (name, value) pairs for the string/repr representation. |