Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 37ce4fb6f8e06394d9b8dd92a82d9002fc6f719f authored by Mads Kiilerich on 24 August 2019, 17:50:35 UTC, committed by Mads Kiilerich on 24 August 2019, 17:50:35 UTC
1 parent 5950012
Raw File
Tip revision: 37ce4fb6f8e06394d9b8dd92a82d9002fc6f719f authored by Mads Kiilerich on 24 August 2019, 17:50:35 UTC
Introduce py3 variant of tounicode
Tip revision: 37ce4fb
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