(obj, p, cycle)
| 836 | p.pretty(list(obj.items())) |
| 837 | |
| 838 | def _deque_pprint(obj, p, cycle): |
| 839 | name = obj.__class__.__name__ |
| 840 | with p.group(len(name) + 1, name + '(', ')'): |
| 841 | if cycle: |
| 842 | p.text('...') |
| 843 | else: |
| 844 | p.pretty(list(obj)) |
| 845 | |
| 846 | |
| 847 | def _counter_pprint(obj, p, cycle): |