class documentation

class TimingWrapper(object):

View In Hierarchy

wrap a timer around a callable.

Attribute timer collects the timing data in an ElapsedWCTime class instance, in particular the overall elapsed time in timer.elapsed and the time of the last call in timer.toc.

Method __call__ Undocumented
Method __init__ callable_ is the callable to be timed when called
Instance Variable timer Undocumented
Instance Variable _callable Undocumented
def __call__(self, *args, **kwargs):

Undocumented

def __init__(self, callable_):

callable_ is the callable to be timed when called

timer =

Undocumented

_callable =

Undocumented