diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-25 13:43:45 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-25 13:43:45 (GMT) |
commit | 2041859f279423c06a707899b4a66e3f0aba3dfb (patch) | |
tree | efc451d36c521f99174c6bc4689bc14e0afc1f8e /Misc | |
parent | 38c72bd1996164a6f3f90df998f0b9627b07138a (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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 |