summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-25 13:43:45 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-01-25 13:43:45 (GMT)
commit2041859f279423c06a707899b4a66e3f0aba3dfb (patch)
treeefc451d36c521f99174c6bc4689bc14e0afc1f8e /Misc
parent38c72bd1996164a6f3f90df998f0b9627b07138a (diff)
downloadcpython-2041859f279423c06a707899b4a66e3f0aba3dfb.zip
cpython-2041859f279423c06a707899b4a66e3f0aba3dfb.tar.gz
cpython-2041859f279423c06a707899b4a66e3f0aba3dfb.tar.bz2
Issue #20311: Revert e042ea77a152 and 7ce7295393c2, PollSelector.select() and
EpollSelector.select() round again the timeout towards zero
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 0 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9fa1750..c298260 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,11 +40,6 @@ Library
which it could get an inspect.Signature is a callable written in Python.
Fix courtesy of Michael Foord.
-- Issue #20311: selector.PollSelector.select() now rounds the timeout away from
- zero, instead of rounding towards zero. For example, a timeout of one
- microsecond is now rounded to one millisecond, instead of being rounded to
- zero.
-
- Issue #20317: ExitStack.__exit__ could create a self-referential loop if an
exception raised by a cleanup operation already had its context set
correctly (for example, by the @contextmanager decorator). The infinite