Skip to content

Instantly share code, notes, and snippets.

View StefanTodoran's full-sized avatar

Stefan StefanTodoran

View GitHub Profile
@StefanTodoran
StefanTodoran / test_pprint.py
Last active February 6, 2025 23:17
Code for testing block style pprint on various datastructures
import pprint
from collections import OrderedDict
from collections import defaultdict
from collections import Counter
from collections import ChainMap
from collections import deque
from collections import UserDict, UserList
from dataclasses import dataclass, field
from types import SimpleNamespace, MappingProxyType
from typing import Optional