Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 9b41fd8d6da4e06e7a4177428f90ad51509c629e authored by Alain Leufroy on 03 May 2012, 14:57:57 UTC, committed by Alain Leufroy on 03 May 2012, 14:57:57 UTC
1 parent dfac168
Raw File
Tip revision: 9b41fd8d6da4e06e7a4177428f90ad51509c629e authored by Alain Leufroy on 03 May 2012, 14:57:57 UTC
[qt] bookmark: add a bookmark entry in changeset content (closes #92750)
Tip revision: 9b41fd8
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