mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Split stdlib into Python 2 and 3 versions (#5442)
All new files in stdlib/@python2 are straight copies of the corresponding files in stdlib.
This commit is contained in:
6
stdlib/@python2/quopri.pyi
Normal file
6
stdlib/@python2/quopri.pyi
Normal file
@@ -0,0 +1,6 @@
|
||||
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: ...
|
||||
Reference in New Issue
Block a user