Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 93b44d3a1c6aebff248d62b5d1bea5f2ae273444 authored by Pierre-Yves David on 01 May 2014, 08:12:04 UTC, committed by Pierre-Yves David on 01 May 2014, 08:12:04 UTC
There is a fix for Mercurial 3.0 compatibility that we need out.
1 parent cd353d5
Raw File
Tip revision: 93b44d3a1c6aebff248d62b5d1bea5f2ae273444 authored by Pierre-Yves David on 01 May 2014, 08:12:04 UTC
[pkg] prepare version 1.8.1
Tip revision: 93b44d3
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