[Python-checkins] cpython (2.7): Issue 12126: removing incorrect claim about return value of select

eli.bendersky python-checkins at python.org
Sun May 22 05:49:20 CEST 2011


http://hg.python.org/cpython/rev/c0a3e17e677f
changeset:   70266:c0a3e17e677f
branch:      2.7
parent:      70257:cdb91c7a807f
user:        Eli Bendersky <eliben at gmail.com>
date:        Sun May 22 06:49:01 2011 +0300
summary:
  Issue 12126: removing incorrect claim about return value of select

files:
  Doc/howto/sockets.rst |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst
--- a/Doc/howto/sockets.rst
+++ b/Doc/howto/sockets.rst
@@ -357,8 +357,7 @@
 
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list