Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 73e52b60c18e8bef1a75dcf996ed0215acf00e34 authored by Alain Leufroy on 07 April 2014, 17:52:41 UTC, committed by Alain Leufroy on 07 April 2014, 17:52:41 UTC
The config files may be corrupted. But HgView can help fixing the config file problem.
1 parent 050c95e
Raw File
Tip revision: 73e52b60c18e8bef1a75dcf996ed0215acf00e34 authored by Alain Leufroy on 07 April 2014, 17:52:41 UTC
[nested] be robust against .hgguestrepo parse errors (closes #234670)
Tip revision: 73e52b6
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