Files
typeshed/stdlib/2and3/quopri.pyi
2017-03-19 13:08:54 -07:00

9 lines
380 B
Python

# Stubs for quopri (Python 2 and 3)
from typing import BinaryIO
def encode(input: BinaryIO, output: BinaryIO, quotetabs: int, header: int = ...) -> None: ...
def encodestring(s: bytes, quotetabs: int = ..., header: int = ...) -> bytes: ...
def decode(input: BinaryIO, output: BinaryIO, header: int = ...) -> None: ...
def decodestring(s: bytes, header: int = ...) -> bytes: ...