mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
9 lines
380 B
Python
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: ...
|