yaml: add full_load and full_load_all stubs (#2892)

This commit is contained in:
Christopher Dignam
2019-03-29 03:26:13 -04:00
committed by Sebastian Rittau
parent bce70d1ca6
commit f7c00b8b33

View File

@@ -17,6 +17,8 @@ def compose(stream, Loader=...): ...
def compose_all(stream, Loader=...): ...
def load(stream: Union[str, IO[str]], Loader=...) -> Any: ...
def load_all(stream: Union[str, IO[str]], Loader=...) -> Iterator[Any]: ...
def full_load(stream: Union[str, IO[str]]) -> Any: ...
def full_load_all(stream: Union[str, IO[str]]) -> Iterator[Any]: ...
def safe_load(stream: Union[str, IO[str]]) -> Any: ...
def safe_load_all(stream: Union[str, IO[str]]) -> Iterator[Any]: ...
def emit(events, stream=..., Dumper=..., canonical=..., indent=..., width=..., allow_unicode=..., line_break=...): ...