This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author exarkun
Recipients docs@python, exarkun
Date 2011-05-20.00:23:51
SpamBayes Score 0.008926276
Marked as misclassified No
Message-id <1305851032.27.0.6340611371.issue12126@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/py3k/howto/sockets.html#non-blocking-sockets

"And if you put a socket in more than one input list, it will only be (at most) in one output list."


>>> import socket
>>> s = socket.socket()
>>> s.connect(('localhost', 22))
>>> import select
>>> select.select([s], [s], [])
([<socket._socketobject object at 0xb764333c>], [<socket._socketobject object at 0xb764333c>], [])
>>>
History
Date User Action Args
2011-05-20 00:23:52exarkunsetrecipients: + exarkun, docs@python
2011-05-20 00:23:52exarkunsetmessageid: <1305851032.27.0.6340611371.issue12126@psf.upfronthosting.co.za>
2011-05-20 00:23:51exarkunlinkissue12126 messages
2011-05-20 00:23:51exarkuncreate