]> crepu.dev Git - config.git/blob - djavu-asus/elpy/rpc-venv/lib/python3.11/site-packages/tomli/__init__.py
Configuracion en desarrollo PC pega
[config.git] / djavu-asus / elpy / rpc-venv / lib / python3.11 / site-packages / tomli / __init__.py
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 __version__ = "2.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
7
8 from ._parser import TOMLDecodeError, load, loads
9
10 # Pretend this exception was created here.
11 TOMLDecodeError.__module__ = __name__