Yury Selivanov added the comment:

Well, I guess we can replace

    from time import clock

with something like

    try:
        from time import monotonic as clock
    except ImportError:
        from time import time as clock

Victor, what do you think?

----------
nosy: +yselivanov

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

Reply via email to