Fix typo in deprecation message (#15044)

This commit is contained in:
Edge-Seven
2025-11-18 16:31:21 +07:00
committed by GitHub
parent 98c5b95a66
commit ce2998f285
+1 -1
View File
@@ -62,7 +62,7 @@ class TransportSocket:
def listen(self, backlog: int = ..., /) -> None: ...
@deprecated("Removed in Python 3.11")
def makefile(self) -> BinaryIO: ...
@deprecated("Rmoved in Python 3.11")
@deprecated("Removed in Python 3.11")
def sendfile(self, file: BinaryIO, offset: int = 0, count: int | None = None) -> int: ...
@deprecated("Removed in Python 3.11")
def close(self) -> None: ...