Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision c1477c0d7acca681e435f98ff28253620ddc6d77 authored by Alain Leufroy on 10 June 2014, 10:04:58 UTC, committed by Alain Leufroy on 10 June 2014, 10:04:58 UTC
ref: http://stackoverflow.com/questions/13562501/why-i-get-qtimer-can-only-be-used-with-threads-started-with-qthread-messages-i
1 parent 3e94fb8
Raw File
Tip revision: c1477c0d7acca681e435f98ff28253620ddc6d77 authored by Alain Leufroy on 10 June 2014, 10:04:58 UTC
[qt4] fix QThread warnings on exit
Tip revision: c1477c0
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