Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision f8e6cdc3eaa16c54bf357b35f41e80809df0897f authored by alain leufroy on 25 April 2013, 21:59:01 UTC, committed by alain leufroy on 25 April 2013, 21:59:01 UTC
This change fix the space dedicated to display the source position.
By this way the footer content do not move while the source position have more or less digits.
1 parent a246435
Raw File
Tip revision: f8e6cdc3eaa16c54bf357b35f41e80809df0897f authored by alain leufroy on 25 April 2013, 21:59:01 UTC
[tui] improve displayed source position
Tip revision: f8e6cdc
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