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 anacrolix, neologix, pitrou, python-dev, rhettinger, tasslehoff, vstinner
Date 2012-04-04.23:54:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333583675.26.0.2056688744.issue14222@psf.upfronthosting.co.za>
In-reply-to
Content
Other modules that should use a monotonic clock instead of the system time:

 - timeit: default_timer = time.time (but time.clock is still the best clock on Windows for this mmodule)
 - subprocess for Popen.communicate() timeoout
 - sched
 - socket, ssl: timeout. need a C function which uses a monotonic clock if available, or fallback to the system clock
 - trace

See also issues #12338 and #14309.
History
Date User Action Args
2012-04-04 23:54:35vstinnersetrecipients: + vstinner, rhettinger, pitrou, anacrolix, neologix, python-dev, tasslehoff
2012-04-04 23:54:35vstinnersetmessageid: <1333583675.26.0.2056688744.issue14222@psf.upfronthosting.co.za>
2012-04-04 23:54:34vstinnerlinkissue14222 messages
2012-04-04 23:54:34vstinnercreate