massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / quopri.pyi
1 from typing import BinaryIO
2
3 def encode(input: BinaryIO, output: BinaryIO, quotetabs: int, header: int = ...) -> None: ...
4 def encodestring(s: bytes, quotetabs: int = ..., header: int = ...) -> bytes: ...
5 def decode(input: BinaryIO, output: BinaryIO, header: int = ...) -> None: ...
6 def decodestring(s: bytes, header: int = ...) -> bytes: ...