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.

classification
Title: selectors behaviour on EINTR undocumented
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, neologix, pitrou, python-dev
Priority: normal Keywords: needs review, patch

Created on 2013-12-01 11:37 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
selectors_select_signal.diff neologix, 2013-12-01 12:16 review
Messages (4)
msg204914 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-12-01 11:37
Selector.Select() may return an empty list when interrupted, but the doc doesn't say so. The reader will probably trust the statement that """If timeout is None, the call will block until a monitored file object becomes ready""".
msg204916 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2013-12-01 12:16
How about this?
msg204917 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-12-01 12:20
Looks good to me.
msg204918 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-12-01 12:31
New changeset b0c4c7f04f05 by Charles-François Natali in branch 'default':
Issue #19849: selectors: Document the possibility of early select() wakeup upon
http://hg.python.org/cpython/rev/b0c4c7f04f05
History
Date User Action Args
2022-04-11 14:57:54adminsetgithub: 64048
2013-12-01 12:37:01neologixsetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.2, - Python 3.4
2013-12-01 12:31:30python-devsetnosy: + python-dev
messages: + msg204918
2013-12-01 12:20:12pitrousetmessages: + msg204917
2013-12-01 12:16:04neologixsetkeywords: + patch, needs review
files: + selectors_select_signal.diff
messages: + msg204916

stage: patch review
2013-12-01 11:37:42pitroucreate