Add tomllib.__all__ (#7433)

This commit is contained in:
Alex Waygood
2022-03-03 23:25:30 +00:00
committed by GitHub
parent 31b11c6eae
commit fbde20797e

View File

@@ -2,6 +2,8 @@ from _typeshed import SupportsRead
from collections.abc import Callable
from typing import Any
__all__ = ("loads", "load", "TOMLDecodeError")
class TOMLDecodeError(ValueError): ...
def load(__fp: SupportsRead[bytes], *, parse_float: Callable[[str], Any] = ...) -> dict[str, Any]: ...