Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 856a82d1b55cb13fb726d6916ea9bac86acf6a87 authored by David Douard on 27 May 2009, 14:28:14 UTC, committed by David Douard on 27 May 2009, 14:28:14 UTC
2 parent s cec5496 + 3436ad9
Raw File
Tip revision: 856a82d1b55cb13fb726d6916ea9bac86acf6a87 authored by David Douard on 27 May 2009, 14:28:14 UTC
merge
Tip revision: 856a82d
decorators.py
# -*- coding: utf-8 -*-

import time

def timeit(f):
    """Decorator used to time the execution of a function"""
    def timefunc(*args, **kwargs):
        """wrapper"""
        t1 = time.time()
        t2 = time.clock()
        res = f(*args, **kwargs)
        t3 = time.clock()
        t4 = time.time()
        print "%s: %.2fms (time) %.2fms (clock)" % (f.func_name, 1000*(t3 - t2), 1000*(t4 - t1))
        return res
    return timefunc
back to top