File size: 165 Bytes
9ebc77b
 
 
 
 
 
 
1
2
3
4
5
6
7
from time import perf_counter
from contextlib import contextmanager

@contextmanager
def timer():
    start = perf_counter()
    yield lambda: perf_counter() - start