]> granicus.if.org Git - python/commit
Issue #20311, #20452: poll and epoll now round the timeout away from zero,
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 31 Jan 2014 12:02:44 +0000 (13:02 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 31 Jan 2014 12:02:44 +0000 (13:02 +0100)
commitfcfb9461d3cb726b3badee8ffdb6034f19882330
treeaced96c21605b9fba3ae59fe2f1359748fbf823a
parent49d0f4e4282cbb397232c0a80799f661d2f9456f
Issue #20311, #20452: poll and epoll now round the timeout away from zero,
instead of rounding towards zero, in select and selectors modules:
select.epoll.poll(), selectors.PollSelector.poll() and
selectors.EpollSelector.poll(). For example, a timeout of one microsecond
(1e-6) is now rounded to one millisecondi (1e-3), instead of being rounded to
zero.

Mention the change in Misc/NEWS.
Misc/NEWS