mirror of
https://github.com/python/cpython.git
synced 2025-09-29 19:56:59 +00:00
[3.6] bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more functions (GH-4026) (#4032)
Fix timeout rounding in time.sleep(), threading.Lock.acquire() and
socket.socket.settimeout() to round correctly negative timeouts between -1.0 and
0.0. The functions now block waiting for events as expected. Previously, the
call was incorrectly non-blocking.
(cherry picked from commit 59af94fa61
)
This commit is contained in:
parent
95602b368b
commit
be4e9cc769
4 changed files with 10 additions and 6 deletions
|
@ -0,0 +1,4 @@
|
|||
Fix timeout rounding in time.sleep(), threading.Lock.acquire() and
|
||||
socket.socket.settimeout() to round correctly negative timeouts between -1.0 and
|
||||
0.0. The functions now block waiting for events as expected. Previously, the
|
||||
call was incorrectly non-blocking. Patch by Pablo Galindo.
|
|
@ -111,7 +111,7 @@ lock_acquire_parse_args(PyObject *args, PyObject *kwds,
|
|||
|
||||
if (timeout_obj
|
||||
&& _PyTime_FromSecondsObject(timeout,
|
||||
timeout_obj, _PyTime_ROUND_CEILING) < 0)
|
||||
timeout_obj, _PyTime_ROUND_TIMEOUT) < 0)
|
||||
return -1;
|
||||
|
||||
if (!blocking && *timeout != unset_timeout ) {
|
||||
|
@ -129,7 +129,7 @@ lock_acquire_parse_args(PyObject *args, PyObject *kwds,
|
|||
else if (*timeout != unset_timeout) {
|
||||
_PyTime_t microseconds;
|
||||
|
||||
microseconds = _PyTime_AsMicroseconds(*timeout, _PyTime_ROUND_CEILING);
|
||||
microseconds = _PyTime_AsMicroseconds(*timeout, _PyTime_ROUND_TIMEOUT);
|
||||
if (microseconds >= PY_TIMEOUT_MAX) {
|
||||
PyErr_SetString(PyExc_OverflowError,
|
||||
"timeout value is too large");
|
||||
|
|
|
@ -2454,7 +2454,7 @@ socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj)
|
|||
}
|
||||
|
||||
if (_PyTime_FromSecondsObject(timeout,
|
||||
timeout_obj, _PyTime_ROUND_CEILING) < 0)
|
||||
timeout_obj, _PyTime_ROUND_TIMEOUT) < 0)
|
||||
return -1;
|
||||
|
||||
if (*timeout < 0) {
|
||||
|
@ -2463,10 +2463,10 @@ socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj)
|
|||
}
|
||||
|
||||
#ifdef MS_WINDOWS
|
||||
overflow |= (_PyTime_AsTimeval(*timeout, &tv, _PyTime_ROUND_CEILING) < 0);
|
||||
overflow |= (_PyTime_AsTimeval(*timeout, &tv, _PyTime_ROUND_TIMEOUT) < 0);
|
||||
#endif
|
||||
#ifndef HAVE_POLL
|
||||
ms = _PyTime_AsMilliseconds(*timeout, _PyTime_ROUND_CEILING);
|
||||
ms = _PyTime_AsMilliseconds(*timeout, _PyTime_ROUND_TIMEOUT);
|
||||
overflow |= (ms > INT_MAX);
|
||||
#endif
|
||||
if (overflow) {
|
||||
|
|
|
@ -225,7 +225,7 @@ static PyObject *
|
|||
time_sleep(PyObject *self, PyObject *obj)
|
||||
{
|
||||
_PyTime_t secs;
|
||||
if (_PyTime_FromSecondsObject(&secs, obj, _PyTime_ROUND_CEILING))
|
||||
if (_PyTime_FromSecondsObject(&secs, obj, _PyTime_ROUND_TIMEOUT))
|
||||
return NULL;
|
||||
if (secs < 0) {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue