Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision c265070d67c6fe3b2e20960e43ba233217186901 authored by Paul Tonelli on 08 March 2013, 16:39:25 UTC, committed by Paul Tonelli on 08 March 2013, 16:39:25 UTC
1 parent e5dc4c2
Raw File
Tip revision: c265070d67c6fe3b2e20960e43ba233217186901 authored by Paul Tonelli on 08 March 2013, 16:39:25 UTC
dirty patch to allow execution in py2exe executable (closes #122101)
Tip revision: c265070
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