diff options
author | Fred Drake <fdrake@acm.org> | 2001-05-29 15:39:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-05-29 15:39:24 (GMT) |
commit | 0108b375da06e736e2d1547eecdfad28b6bd7157 (patch) | |
tree | cb529cc38952c97029b520bb1d4acf4240c0f703 | |
parent | 477bd2d1e436ef076a0c4a139fb8ed3e01ba138a (diff) | |
download | cpython-0108b375da06e736e2d1547eecdfad28b6bd7157.zip cpython-0108b375da06e736e2d1547eecdfad28b6bd7157.tar.gz cpython-0108b375da06e736e2d1547eecdfad28b6bd7157.tar.bz2 |
The parameter to the listen() method is not optional, but was marked as
optional in the documentation.
This closes SF bug #427985.
-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 |