Add missing objects in codecs, configparser, and multiprocessing.dummy (#7360)

This commit is contained in:
Alex Waygood
2022-02-22 17:25:27 +00:00
committed by GitHub
parent 28fd555431
commit 6fc4c14181
4 changed files with 5 additions and 4 deletions

View File

@@ -189,6 +189,7 @@ def replace_errors(exception: UnicodeError) -> tuple[str | bytes, int]: ...
def ignore_errors(exception: UnicodeError) -> tuple[str | bytes, int]: ...
def xmlcharrefreplace_errors(exception: UnicodeError) -> tuple[str | bytes, int]: ...
def backslashreplace_errors(exception: UnicodeError) -> tuple[str | bytes, int]: ...
def namereplace_errors(exception: UnicodeError) -> tuple[str | bytes, int]: ...
class Codec:
# These are sort of @abstractmethod but sort of not.