Lines Matching refs:__repr__
178 p = self._dispatch.get(type(object).__repr__, None)
188 hasattr(object.__repr__, "__wrapped__") and
189 "__create_fn__" in object.__repr__.__wrapped__.__qualname__):
221 _dispatch[dict.__repr__] = _pprint_dict
234 _dispatch[_collections.OrderedDict.__repr__] = _pprint_ordered_dict
242 _dispatch[list.__repr__] = _pprint_list
251 _dispatch[tuple.__repr__] = _pprint_tuple
270 _dispatch[set.__repr__] = _pprint_set
271 _dispatch[frozenset.__repr__] = _pprint_set
322 _dispatch[str.__repr__] = _pprint_str
343 _dispatch[bytes.__repr__] = _pprint_bytes
352 _dispatch[bytearray.__repr__] = _pprint_bytearray
360 _dispatch[_types.MappingProxyType.__repr__] = _pprint_mappingproxy
375 _dispatch[_types.SimpleNamespace.__repr__] = _pprint_simplenamespace
481 _dispatch[_collections.defaultdict.__repr__] = _pprint_default_dict
497 _dispatch[_collections.Counter.__repr__] = _pprint_counter
514 _dispatch[_collections.ChainMap.__repr__] = _pprint_chain_map
534 _dispatch[_collections.deque.__repr__] = _pprint_deque
539 _dispatch[_collections.UserDict.__repr__] = _pprint_user_dict
544 _dispatch[_collections.UserList.__repr__] = _pprint_user_list
549 _dispatch[_collections.UserString.__repr__] = _pprint_user_string
557 r = getattr(typ, "__repr__", None)
559 if issubclass(typ, int) and r is int.__repr__:
565 if issubclass(typ, dict) and r is dict.__repr__:
595 if (issubclass(typ, list) and r is list.__repr__) or \
596 (issubclass(typ, tuple) and r is tuple.__repr__):