stubs for uu

This commit is contained in:
Jelle Zijlstra
2017-03-20 20:56:01 -07:00
committed by Łukasz Langa
parent e30f8f59ae
commit 7ceee447f0

10
stdlib/2and3/uu.pyi Normal file
View File

@@ -0,0 +1,10 @@
# Stubs for uu (Python 2 and 3)
from typing import BinaryIO, Union, Optional, Text
_File = Union[Text, BinaryIO]
class Error(Exception): ...
def encode(in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ...) -> None: ...
def decode(in_file: _File, out_file: Optional[_File] = ..., mode: Optional[int] = ..., quiet: int = ...) -> None: ...