(self, object, stream, indent, allowance, context, level)
| 361 | _collections.abc.MappingView)} |
| 362 | |
| 363 | def _pprint_list(self, object, stream, indent, allowance, context, level): |
| 364 | stream.write(self._format_block_start('[', indent)) |
| 365 | self._format_items(object, stream, indent, allowance + 1, |
| 366 | context, level) |
| 367 | stream.write(self._format_block_end(']', indent)) |
| 368 | |
| 369 | _dispatch[list.__repr__] = _pprint_list |
| 370 |
nothing calls this directly
no test coverage detected