Staging
v0.5.0
https://foss.heptapod.net/mercurial/hgview
Raw File
Tip revision: ec0ae77725204ec48150fea5fbf3ab09b30559ec authored by Julien Cristau on 29 May 2012, 16:14:35 UTC
Rebuild debian source package to add missing files
Tip revision: ec0ae77
decorators.py
# -*- coding: utf-8 -*-
"""
Some useful decorator functions
"""
import time

def timeit(func):
    """Decorator used to time the execution of a function"""
    def timefunc(*args, **kwargs):
        """wrapper"""
        t_1 = time.time()
        t_2 = time.clock()
        res = func(*args, **kwargs)
        t_3 = time.clock()
        t_4 = time.time()
        print "%s: %.2fms (time) %.2fms (clock)" % \
              (func.func_name, 1000*(t_3 - t_2), 1000*(t_4 - t_1))
        return res
    return timefunc
back to top