diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-05-22 03:57:17 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-05-22 03:57:17 (GMT) |
commit | 2f1b3962a2ed4eb171aa584044f73aea6967ed98 (patch) | |
tree | 151ef57fd096db471ef5b9c0f3b1d5a0106fc4f7 /Doc/howto | |
parent | f9ca76f50027e004ced91ac46578596747ce375f (diff) | |
parent | 46ab96a0c8b12c8e40796c94bf298cbe7ecae1fe (diff) | |
download | cpython-2f1b3962a2ed4eb171aa584044f73aea6967ed98.zip cpython-2f1b3962a2ed4eb171aa584044f73aea6967ed98.tar.gz cpython-2f1b3962a2ed4eb171aa584044f73aea6967ed98.tar.bz2 |
Issue 12126: removing incorrect claim about return value of select
merge 3.1 -> 3.2
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/sockets.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index 1ecf344..04e9b98 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -356,8 +356,7 @@ reason to do otherwise. In return, you will get three lists. They contain the sockets that are actually readable, writable and in error. Each of these lists is a subset (possibly -empty) of the corresponding list you passed in. If you put a socket in more -than one input list, it will only be (at most) in one output list. +empty) of the corresponding list you passed in. If a socket is in the output readable list, you can be as-close-to-certain-as-we-ever-get-in-this-business that a ``recv`` on that |