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: Use _PyTime_ROUND_TIMEOUT in _threadmodule.c, timemodule.c and socketmodule.c
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pablogsal, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2017-10-17 22:21 by pablogsal, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4026 merged pablogsal, 2017-10-17 22:25
PR 4030 closed python-dev, 2017-10-18 07:13
PR 4032 merged python-dev, 2017-10-18 08:13
Messages (3)
msg304540 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2017-10-17 22:21
Following PR for https://bugs.python.org/issue31786 time_sleep, lock_acquire_parse_args and socket_parse_timeout should use _PyTime_ROUND_TIMEOUT instead of _PyTime_ROUND_CEILING.
msg304557 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-10-18 07:13
New changeset 59af94fa61bf90adbe624508e909b5d6ef6e8464 by Serhiy Storchaka (Pablo Galindo) in branch 'master':
bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more functions (#4026)
https://github.com/python/cpython/commit/59af94fa61bf90adbe624508e909b5d6ef6e8464
msg304568 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-10-18 09:10
New changeset be4e9cc769aac3cb46670c049b9f21e412be53d1 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6':
[3.6] bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more functions (GH-4026) (#4032)
https://github.com/python/cpython/commit/be4e9cc769aac3cb46670c049b9f21e412be53d1
History
Date User Action Args
2022-04-11 14:58:53adminsetgithub: 75987
2017-10-18 12:10:20serhiy.storchakasetstatus: open -> closed
type: behavior
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.6
2017-10-18 09:10:02serhiy.storchakasetmessages: + msg304568
2017-10-18 08:13:36python-devsetpull_requests: + pull_request4006
2017-10-18 07:13:23python-devsetpull_requests: + pull_request4004
2017-10-18 07:13:11serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg304557
2017-10-17 22:25:08pablogsalsetkeywords: + patch
stage: patch review
pull_requests: + pull_request4001
2017-10-17 22:21:32pablogsalcreate