Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 9944923404b39fd9ac5037470e63bef5777068eb authored by Mads Kiilerich on 03 April 2020, 23:13:52 UTC, committed by Mads Kiilerich on 03 April 2020, 23:13:52 UTC
Occasionally, things would crash when a float popped up where an integer was
expected. This seems like places where integer division was intended.
1 parent 9920a20
Raw File
Tip revision: 9944923404b39fd9ac5037470e63bef5777068eb authored by Mads Kiilerich on 03 April 2020, 23:13:52 UTC
py3: use integer division in more places
Tip revision: 9944923
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