mirror of https://github.com/python/cpython
Issue #19849: selectors: Document the possibility of early select() wakeup upon
EINTR.
This commit is contained in:
parent
b3330a0abf
commit
837a6e012f
|
@ -150,6 +150,11 @@ below:
|
|||
object.
|
||||
*events* is a bitmask of events ready on this file object.
|
||||
|
||||
.. note::
|
||||
This method can return before any file object becomes ready or the
|
||||
timeout has elapsed if the current process receives a signal: in this
|
||||
case, an empty list will be returned.
|
||||
|
||||
.. method:: close()
|
||||
|
||||
Close the selector.
|
||||
|
|
Loading…
Reference in New Issue