We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a8199 commit 1b66910Copy full SHA for 1b66910
stdlib/socketserver.pyi
@@ -86,7 +86,7 @@ class UDPServer(TCPServer):
86
def get_request(self) -> tuple[tuple[bytes, _socket], _RetAddress]: ... # type: ignore[override]
87
88
if sys.platform != "win32":
89
- class UnixStreamServer(BaseServer):
+ class UnixStreamServer(TCPServer):
90
server_address: _AfUnixAddress # type: ignore[assignment]
91
def __init__(
92
self,
@@ -95,7 +95,7 @@ if sys.platform != "win32":
95
bind_and_activate: bool = True,
96
) -> None: ...
97
98
- class UnixDatagramServer(BaseServer):
+ class UnixDatagramServer(UDPServer):
99
100
101
0 commit comments