blob: fa382f3dc7dd514cdc258f8d4d2ca6ad271e4225 [file] [log] [blame]
from typing import Any, IO, Mapping, MutableMapping, Optional, Type, Union
import datetime
class TomlDecodeError(Exception): ...
class TomlTz(datetime.tzinfo):
def __init__(self, toml_offset: str) -> None: ...
def load(f: Union[str, list, IO[str]],
_dict: Type[MutableMapping[str, Any]] = ...) \
-> MutableMapping[str, Any]: ...
def loads(s: str, _dict: Type[MutableMapping[str, Any]] = ...) \
-> MutableMapping[str, Any]: ...
def dump(o: Mapping[str, Any], f: IO[str]) -> str: ...
def dumps(o: Mapping[str, Any]) -> str: ...