You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bpo-41857: Document timeout arguments in select module
The docstring for the poll() methods of the select.poll[1] and
select.devpoll[2] classes did not describe the expected units of the
timeout argument (milliseconds). Previously this information was only
available from the online documentation.
This is a potential source of confusion, because other poll() methods in
the select module, such as select.epoll and select.kqueue objects, use
units of seconds (and were documented).
Include the units in the docstring description so that this information
is at least available from interactive help.
[1] https://docs.python.org/3/library/select.html#select.poll.poll
[2] https://docs.python.org/3/library/select.html#select.devpoll.poll
0 commit comments