add the remaining encodings submodules (#13123)

This commit is contained in:
Stephen Morton
2024-11-26 20:00:19 -08:00
committed by GitHub
parent ceec43659c
commit 720946c9d2
7 changed files with 136 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
import codecs
from _typeshed import ReadableBuffer
# These return types are just to match the base types. In reality, these always
# raise an error.
class Codec(codecs.Codec):
def encode(self, input: str, errors: str = "strict") -> tuple[bytes, int]: ...
def decode(self, input: ReadableBuffer, errors: str = "strict") -> tuple[str, int]: ...
class IncrementalEncoder(codecs.IncrementalEncoder):
def encode(self, input: str, final: bool = False) -> bytes: ...
class IncrementalDecoder(codecs.IncrementalDecoder):
def decode(self, input: ReadableBuffer, final: bool = False) -> str: ...
class StreamWriter(Codec, codecs.StreamWriter): ...
class StreamReader(Codec, codecs.StreamReader): ...
def getregentry() -> codecs.CodecInfo: ...