STINNER Victor <victor.stin...@gmail.com> added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14222>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to