mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
11 lines
374 B
Python
11 lines
374 B
Python
# 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: ...
|