MCPcopy Index your code
hub / github.com/python/cpython / mappingview_custom_repr

Class mappingview_custom_repr

Lib/test/test_pprint.py:81–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79 return '*'*len(dict.__repr__(self))
80
81class mappingview_custom_repr(MappingView):
82 def __repr__(self):
83 return '*'*len(MappingView.__repr__(self))
84
85class keysview_custom_repr(KeysView):
86 def __repr__(self):

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…