massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / quopri.pyi
1 # Stubs for quopri (Python 2 and 3)\r
2 \r
3 from typing import BinaryIO\r
4 \r
5 def encode(input: BinaryIO, output: BinaryIO, quotetabs: int, header: int = ...) -> None: ...\r
6 def encodestring(s: bytes, quotetabs: int = ..., header: int = ...) -> bytes: ...\r
7 def decode(input: BinaryIO, output: BinaryIO, header: int = ...) -> None: ...\r
8 def decodestring(s: bytes, header: int = ...) -> bytes: ...\r