X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=stopwatch.py;h=ae8e01aa18452ed932ef589b9047c7f0c68ab58a;hb=0a449b165cc07b584e4467ff55a3ed16ca53fff0;hp=c6c154c124482c9bf9c9e20950a9cca0fb22cb1d;hpb=5317c50ce7a96a37acfab3800c0935580766dbbf;p=python_utils.git diff --git a/stopwatch.py b/stopwatch.py index c6c154c..ae8e01a 100644 --- a/stopwatch.py +++ b/stopwatch.py @@ -1,10 +1,13 @@ #!/usr/bin/env python3 +"""A simple stopwatch decorator / context for timing things.""" + +import contextlib import time -from typing import Callable, Optional +from typing import Callable, Literal -class Timer(object): +class Timer(contextlib.AbstractContextManager): """ A stopwatch to time how long something takes (walltime). @@ -29,6 +32,6 @@ class Timer(object): self.end = 0.0 return lambda: self.end - self.start - def __exit__(self, *args) -> Optional[bool]: + def __exit__(self, *args) -> Literal[False]: self.end = time.perf_counter() - return None # don't suppress exceptions + return False