1 2 3 4 5 6 7 8 9
import sys __all__ = ['tomllib'] if sys.version_info >= (3, 11): import tomllib else: # pragma: no cover import tomli as tomllib