Add unsafe_ functions to yaml (#4440)

Close #4439
This commit is contained in:
Toru Ogawa
2020-08-12 22:25:26 +09:00
committed by GitHub
parent 3bd5471744
commit 7643f1e16c

View File

@@ -32,6 +32,8 @@ def full_load(stream: Union[bytes, IO[bytes], str, IO[str]]) -> Any: ...
def full_load_all(stream: Union[bytes, IO[bytes], str, IO[str]]) -> Iterator[Any]: ...
def safe_load(stream: Union[bytes, IO[bytes], str, IO[str]]) -> Any: ...
def safe_load_all(stream: Union[bytes, IO[bytes], str, IO[str]]) -> Iterator[Any]: ...
def unsafe_load(stream: Union[bytes, IO[bytes], str, IO[str]]) -> Any: ...
def unsafe_load_all(stream: Union[bytes, IO[bytes], str, IO[str]]) -> Iterator[Any]: ...
def emit(events, stream=..., Dumper=..., canonical=..., indent=..., width=..., allow_unicode=..., line_break=...): ...
@overload
def serialize_all(