Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision ed1e6de133b9e0efd46e412e1803705724215f17 authored by Mads Kiilerich on 31 March 2020, 21:49:48 UTC, committed by Mads Kiilerich on 31 March 2020, 21:49:48 UTC
pyrcc5 doesn't support py2 code generation and doesn't have the -py3 option.

This will thus effectively drop hgview Python 2 support. No big deal.
1 parent 826e628
Raw File
Tip revision: ed1e6de133b9e0efd46e412e1803705724215f17 authored by Mads Kiilerich on 31 March 2020, 21:49:48 UTC
qt5: drop pyrcc py3 code generation option
Tip revision: ed1e6de
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