mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
committed by
Jelle Zijlstra
parent
4ca0a63027
commit
1965e9dd22
24
third_party/2and3/toml.pyi
vendored
Normal file
24
third_party/2and3/toml.pyi
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
from typing import Any, IO, List, Mapping, MutableMapping, Optional, Protocol, Text, Type, Union
|
||||
import datetime
|
||||
import sys
|
||||
|
||||
if sys.version_info >= (3, 4):
|
||||
import pathlib
|
||||
if sys.version_info >= (3, 6):
|
||||
import os
|
||||
_PathLike = Union[Text, pathlib.PurePath, os.PathLike]
|
||||
else:
|
||||
_PathLike = Union[Text, pathlib.PurePath]
|
||||
else:
|
||||
_PathLike = Text
|
||||
|
||||
class _Writable(Protocol):
|
||||
def write(self, obj: str) -> Any: ...
|
||||
|
||||
class TomlDecodeError(Exception): ...
|
||||
|
||||
def load(f: Union[_PathLike, List[Text], IO[str]], _dict: Type[MutableMapping[str, Any]] = ...) -> MutableMapping[str, Any]: ...
|
||||
def loads(s: Text, _dict: Type[MutableMapping[str, Any]] = ...) -> MutableMapping[str, Any]: ...
|
||||
|
||||
def dump(o: Mapping[str, Any], f: _Writable) -> str: ...
|
||||
def dumps(o: Mapping[str, Any]) -> str: ...
|
||||
Reference in New Issue
Block a user