Staging
v0.8.1
https://foss.heptapod.net/mercurial/hgview
Revision d62399ab51d82a418b84dd7adb00011ccce1f032 authored by David Douard on 03 June 2009, 22:17:02 UTC, committed by David Douard on 03 June 2009, 22:17:02 UTC
1 parent 383a414
Raw File
Tip revision: d62399ab51d82a418b84dd7adb00011ccce1f032 authored by David Douard on 03 June 2009, 22:17:02 UTC
Handle (partially) copied files
Tip revision: d62399a
decorators.py
# -*- coding: utf-8 -*-

import time

def timeit(f):
    """Decorator used to time the execution of a function"""
    def timefunc(*args, **kwargs):
        """wrapper"""
        t1 = time.time()
        t2 = time.clock()
        res = f(*args, **kwargs)
        t3 = time.clock()
        t4 = time.time()
        print "%s: %.2fms (time) %.2fms (clock)" % (f.func_name, 1000*(t3 - t2), 1000*(t4 - t1))
        return res
    return timefunc
back to top