summaryrefslogtreecommitdiffstats
path: root/flit_core/flit_core/vendor/tomli/__init__.py
blob: 85974670c38d5c4abd93ac15e20d05a94788f677 (plain)
1
2
3
4
5
6
7
8
9
"""A lil' TOML parser."""

__all__ = ("loads", "load", "TOMLDecodeError")
__version__ = "1.2.3"  # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

from ._parser import TOMLDecodeError, load, loads

# Pretend this exception was created here.
TOMLDecodeError.__module__ = "tomli"