[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-06 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-06 Thread miss-islington
miss-islington added the comment: New changeset 972458a4245afb4e934fbcb9c0224b105fb5d7ba by Miss Islington (bot) in branch '3.6': bpo-34054: multiprocessing uses time.monotonic() (GH-8118) https://github.com/python/cpython/commit/972458a4245afb4e934fbcb9c0224b105fb5d7ba --

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-06 Thread miss-islington
miss-islington added the comment: New changeset 4bd5fce27d5c03a013e5ebb008670ca0d89e3298 by Miss Islington (bot) in branch '3.7': bpo-34054: multiprocessing uses time.monotonic() (GH-8118) https://github.com/python/cpython/commit/4bd5fce27d5c03a013e5ebb008670ca0d89e3298 -- nosy: +mi

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +7714 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +7713 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-06 Thread STINNER Victor
STINNER Victor added the comment: New changeset c2368cbc83ca2bafeaea0e4760be4996046d0444 by Victor Stinner in branch 'master': bpo-34054: multiprocessing uses time.monotonic() (GH-8118) https://github.com/python/cpython/commit/c2368cbc83ca2bafeaea0e4760be4996046d0444 -- ___

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-05 Thread STINNER Victor
STINNER Victor added the comment: Monotonic clock: https://docs.python.org/dev/library/time.html#time.monotonic -- ___ Python tracker ___ _

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-05 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +7703 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue34054] multiprocessing should use time.monotonic() for timeout

2018-07-05 Thread STINNER Victor
New submission from STINNER Victor : In different functions, the multiprocessing module uses the system clock: time.time(). The system clock can be updated manually by the system administrator or automatically by NTP (for example). Attached PR modifies multiprocessing to use time.monotonic()