Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 3e94fb854fa9cad65c60acdc4b8e898c5ec574e6 authored by Pierre-Yves David on 21 June 2013, 13:06:02 UTC, committed by Pierre-Yves David on 21 June 2013, 13:06:02 UTC
2 parent s 24ca5e9 + be670f4
Raw File
Tip revision: 3e94fb854fa9cad65c60acdc4b8e898c5ec574e6 authored by Pierre-Yves David on 21 June 2013, 13:06:02 UTC
merge with other stable head
Tip revision: 3e94fb8
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