Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision c54eb2cb4e3092e5e3280b94fe0f676d5cd4be2d authored by David Douard on 04 December 2009, 21:22:51 UTC, committed by David Douard on 04 December 2009, 21:22:51 UTC
- identidy changesets that are MQ patches in the graph using icons,
- identify them also in the revision metadata textview
1 parent 7d77327
Raw File
Tip revision: c54eb2cb4e3092e5e3280b94fe0f676d5cd4be2d authored by David Douard on 04 December 2009, 21:22:51 UTC
Add simple support for mq
Tip revision: c54eb2c
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