Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 54916f9f5f58026c1456f6422112be95ee83d2cf authored by Mads Kiilerich on 31 March 2020, 22:05:29 UTC, committed by Mads Kiilerich on 31 March 2020, 22:05:29 UTC
1 parent ed1e6de
Raw File
Tip revision: 54916f9f5f58026c1456f6422112be95ee83d2cf authored by Mads Kiilerich on 31 March 2020, 22:05:29 UTC
qt5: use pyrcc5 and pyuic5
Tip revision: 54916f9
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