Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: improve accuracy of socketserver reference #24767

Merged
merged 9 commits into from
Nov 29, 2022
6 changes: 3 additions & 3 deletions Doc/library/socketserver.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ synchronous servers of four types::
+-----------+ +--------------------+
geryogam marked this conversation as resolved.
Show resolved Hide resolved

Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from
:class:`UnixStreamServer` --- the only difference between an IP and a Unix
server is the address family, which is simply repeated in both Unix
server classes.
:class:`UnixStreamServer` --- the only difference between a TCP or UDP server
and a Unix stream or datagram server is the address family, which is simply repeated in both Unix
stream and datagram server classes.
geryogam marked this conversation as resolved.
Show resolved Hide resolved


.. class:: ForkingMixIn
Expand Down