aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Lib/tomllib/__init__.py
blob: ef91cb9d25dd794b2668b9557adca0601b5069f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2021 Taneli Hukkinen
# Licensed to PSF under a Contributor Agreement.

__all__ = ("loads", "load", "TOMLDecodeError")

from ._parser import TOMLDecodeError, load, loads

# Pretend this exception was created here.
TOMLDecodeError.__module__ = __name__