[3.6] bpo-34054: multiprocessing uses time.monotonic() (GH-8118) by miss-islington · Pull Request #8140 · python/cpython

@vstinner @miss-islington

The multiprocessing module now uses the monotonic clock
time.monotonic() instead of the system clock time.time() to implement
timeouts.
(cherry picked from commit c2368cb)

Co-authored-by: Victor Stinner <vstinner@redhat.com>

vstinner