diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-29 15:37:45 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-29 15:37:45 (GMT) |
commit | c80d4dd6950421b47cd973361d3823e1e29b9df4 (patch) | |
tree | be429945566975cd0c2c41cc4925e7e766dd757f /Doc/lib/libasyncore.tex | |
parent | b2625eb10e181c01bd3708f72b6b2728adb1b9b7 (diff) | |
download | cpython-c80d4dd6950421b47cd973361d3823e1e29b9df4.zip cpython-c80d4dd6950421b47cd973361d3823e1e29b9df4.tar.gz cpython-c80d4dd6950421b47cd973361d3823e1e29b9df4.tar.bz2 |
The parameter to the listen() method is not optional, but was marked as
optional in the documentation.
This closes SF bug #427985.
Diffstat (limited to 'Doc/lib/libasyncore.tex')
-rw-r--r-- | Doc/lib/libasyncore.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libasyncore.tex b/Doc/lib/libasyncore.tex index cce0d50..66998d1 100644 --- a/Doc/lib/libasyncore.tex +++ b/Doc/lib/libasyncore.tex @@ -136,7 +136,7 @@ identical to their socket partners. Read at most \var{buffer_size} bytes from the socket. \end{methoddesc} -\begin{methoddesc}{listen}{\optional{backlog}} +\begin{methoddesc}{listen}{backlog} Listen for connections made to the socket. The \var{backlog} argument specifies the maximum number of queued connections and should be at least 1; the maximum value is |