Commit c80d4dd6 authored by Fred Drake's avatar Fred Drake

The parameter to the listen() method is not optional, but was marked as

optional in the documentation.

This closes SF bug #427985.
parent b2625eb1
...@@ -136,7 +136,7 @@ identical to their socket partners. ...@@ -136,7 +136,7 @@ identical to their socket partners.
Read at most \var{buffer_size} bytes from the socket. Read at most \var{buffer_size} bytes from the socket.
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}{listen}{\optional{backlog}} \begin{methoddesc}{listen}{backlog}
Listen for connections made to the socket. The \var{backlog} Listen for connections made to the socket. The \var{backlog}
argument specifies the maximum number of queued connections argument specifies the maximum number of queued connections
and should be at least 1; the maximum value is and should be at least 1; the maximum value is
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment