Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 59762159b395ac83ad92b95b64ad99f545b3fa45 authored by Nicolas Chauvat on 20 April 2020, 19:59:48 UTC, committed by Nicolas Chauvat on 20 April 2020, 19:59:48 UTC
1 parent e085afe
Raw File
Tip revision: 59762159b395ac83ad92b95b64ad99f545b3fa45 authored by Nicolas Chauvat on 20 April 2020, 19:59:48 UTC
Rename README to README.rst to get Heptapod to render it nicely
Tip revision: 5976215
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