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.

Author vstinner
Recipients vstinner
Date 2018-07-05.16:33:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530808427.84.0.56676864532.issue34054@psf.upfronthosting.co.za>
In-reply-to
Content
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() instead to not be affected by system clock changes.

time.monotonic() is always available since Python 3.5. See also the PEP 418.
History
Date User Action Args
2018-07-05 16:33:47vstinnersetrecipients: + vstinner
2018-07-05 16:33:47vstinnersetmessageid: <1530808427.84.0.56676864532.issue34054@psf.upfronthosting.co.za>
2018-07-05 16:33:47vstinnerlinkissue34054 messages
2018-07-05 16:33:47vstinnercreate