[Python-checkins] cpython (merge 3.2 -> default): Issue 12126: removing incorrect claim about return value of select

eli.bendersky python-checkins at python.org
Sun May 22 06:00:12 CEST 2011


http://hg.python.org/cpython/rev/53242ca6df28
changeset:   70269:53242ca6df28
parent:      70265:f37a4e1182d6
parent:      70268:c26d551b5ff6
user:        Eli Bendersky <eliben at gmail.com>
date:        Sun May 22 06:59:49 2011 +0300
summary:
  Issue 12126: removing incorrect claim about return value of select
merge 3.2 -> default

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
@@ -356,8 +356,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