diff --git a/third_party/2and3/yaml/__init__.pyi b/third_party/2and3/yaml/__init__.pyi index 146b50863..611680051 100644 --- a/third_party/2and3/yaml/__init__.pyi +++ b/third_party/2and3/yaml/__init__.pyi @@ -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(