__init__.py 308 B

12345678910
  1. # SPDX-License-Identifier: MIT
  2. # SPDX-FileCopyrightText: 2021 Taneli Hukkinen
  3. # Licensed to PSF under a Contributor Agreement.
  4. __all__ = ("loads", "load", "TOMLDecodeError")
  5. from ._parser import TOMLDecodeError, load, loads
  6. # Pretend this exception was created here.
  7. TOMLDecodeError.__module__ = __name__