We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a945969 commit 287e687Copy full SHA for 287e687
1 file changed
Doc/library/socketserver.rst
@@ -112,6 +112,8 @@ server classes.
112
:class:`UDPServer`. Setting the various attributes also changes the
113
behavior of the underlying server mechanism.
114
115
+ :class:`ForkingMixIn` and the Forking classes mentioned below are
116
+ only available on POSIX platforms that support :func:`~os.fork`.
117
118
.. class:: ForkingTCPServer
119
ForkingUDPServer
@@ -619,3 +621,5 @@ The output of the example should look something like this::
619
621
620
622
The :class:`ForkingMixIn` class is used in the same way, except that the server
623
will spawn a new process for each request.
624
+Available only on POSIX platforms that support :func:`~os.fork`.
625
+
0 commit comments