Skip to content
Snippets Groups Projects
Commit 98b6d35c authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

docs: select: Describe poll.poll() return value in detail.

parent 9b12bc78
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,10 @@ Methods
.. method:: poll.poll([timeout])
Wait for at least one of the registered objects to become ready. Returns
list of ready objects, or empty list on timeout.
list of (``obj``, ``event``, ...) tuples, ``event`` element specifying
whether ``obj`` is ready for reading, writing, or both (see ``register``
method above). There may be other elements in tuple, depending on platform
and version, so don't assume that its size is 2. In case of timeout, an
empty list is returned.
Timeout is in milliseconds.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment