xref: /aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/tomllib/__init__.py (revision cda5da8d549138a6648c5ee6d7a49cf8f4a657be)
1# SPDX-License-Identifier: MIT
2# SPDX-FileCopyrightText: 2021 Taneli Hukkinen
3# Licensed to PSF under a Contributor Agreement.
4
5__all__ = ("loads", "load", "TOMLDecodeError")
6
7from ._parser import TOMLDecodeError, load, loads
8
9# Pretend this exception was created here.
10TOMLDecodeError.__module__ = __name__
11