Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 973da7d85f0a737e61107e7b684d7b9622c07ad9 authored by David Douard on 30 November 2009, 20:22:08 UTC, committed by David Douard on 30 November 2009, 20:22:08 UTC
Make sure we do font substitutions only after QApplication has been instanciated.
1 parent 76b3fa7
Raw File
Tip revision: 973da7d85f0a737e61107e7b684d7b9622c07ad9 authored by David Douard on 30 November 2009, 20:22:08 UTC
Fix segfault on some platforms.
Tip revision: 973da7d
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