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 yselivanov
Recipients pfalcon, vstinner, yselivanov
Date 2014-02-02.02:42:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391308977.06.0.585359096127.issue20475@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2014-02-02 02:42:57yselivanovsetrecipients: + yselivanov, pfalcon, vstinner
2014-02-02 02:42:57yselivanovsetmessageid: <1391308977.06.0.585359096127.issue20475@psf.upfronthosting.co.za>
2014-02-02 02:42:57yselivanovlinkissue20475 messages
2014-02-02 02:42:56yselivanovcreate