Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision d52361f305487bc212f43729847099d34e102994 authored by Carine Dengler on 11 February 2020, 14:47:07 UTC, committed by Carine Dengler on 11 February 2020, 14:47:07 UTC
1 parent 388d76c
Raw File
Tip revision: d52361f305487bc212f43729847099d34e102994 authored by Carine Dengler on 11 February 2020, 14:47:07 UTC
scmutil.status] scmutil.status is no longer tuple and new __iter__ method is generator; enclose call to repo.status in list() before attempting to access elements
Tip revision: d52361f
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