Format object for a specific context, returning a string and flags indicating whether the representation is 'readable' and whether the object represents a recursive construct.
(self, object, context, maxlevels, level)
| 464 | return repr |
| 465 | |
| 466 | def format(self, object, context, maxlevels, level): |
| 467 | """Format object for a specific context, returning a string |
| 468 | and flags indicating whether the representation is 'readable' |
| 469 | and whether the object represents a recursive construct. |
| 470 | """ |
| 471 | return self._safe_repr(object, context, maxlevels, level) |
| 472 | |
| 473 | def _pprint_default_dict(self, object, stream, indent, allowance, context, level): |
| 474 | if not len(object): |
no test coverage detected