(self, object, stream, indent, allowance, context, level)
| 497 | _dispatch[bytearray.__repr__] = _pprint_bytearray |
| 498 | |
| 499 | def _pprint_mappingproxy(self, object, stream, indent, allowance, context, level): |
| 500 | stream.write('mappingproxy(') |
| 501 | self._format( |
| 502 | object.copy(), |
| 503 | stream, |
| 504 | self._child_indent(indent, 13), |
| 505 | allowance + 1, |
| 506 | context, |
| 507 | level, |
| 508 | ) |
| 509 | stream.write(')') |
| 510 | |
| 511 | _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy |
| 512 |
nothing calls this directly
no test coverage detected