Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision a9cddb87c5d23fa4394e07bd5cfa0a8baa8f1dd3 authored by Philippe Pepiot on 13 November 2019, 12:55:47 UTC, committed by Philippe Pepiot on 13 November 2019, 12:55:47 UTC
mercurial.demandimport has been moved to hgdemandimport
1 parent cb72d66
Raw File
Tip revision: a9cddb87c5d23fa4394e07bd5cfa0a8baa8f1dd3 authored by Philippe Pepiot on 13 November 2019, 12:55:47 UTC
Compat with mercurial 5.2
Tip revision: a9cddb8
decorators.py
# -*- coding: utf-8 -*-
"""
Some useful decorator functions
"""
from __future__ import print_function

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.__name__, 1000*(t_3 - t_2), 1000*(t_4 - t_1)))
        return res
    return timefunc
back to top