(self, object, stream, indent, allowance, context, level)
| 249 | _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict |
| 250 | |
| 251 | def _pprint_list(self, object, stream, indent, allowance, context, level): |
| 252 | stream.write('[') |
| 253 | self._format_items(object, stream, indent, allowance + 1, |
| 254 | context, level) |
| 255 | stream.write(']') |
| 256 | |
| 257 | _dispatch[list.__repr__] = _pprint_list |
| 258 |
nothing calls this directly
no test coverage detected