Method
_pprint_mappingproxy
(self, object, stream, indent, allowance, context, level)
Source from the content-addressed store, hash-verified
| 370 | _dispatch[bytearray.__repr__] = _pprint_bytearray |
| 371 | |
| 372 | def _pprint_mappingproxy(self, object, stream, indent, allowance, context, level): |
| 373 | stream.write('mappingproxy(') |
| 374 | self._format(object.copy(), stream, indent + 13, allowance + 1, |
| 375 | context, level) |
| 376 | stream.write(')') |
| 377 | |
| 378 | _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy |
| 379 | |
Callers
nothing calls this directly
Tested by
no test coverage detected