Mercurial > p > roundup > code
view roundup/anypy/time_.py @ 7774:60a6d50298c4
chore: fix whitespace before comment
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 02 Mar 2024 13:49:32 -0500 |
| parents | 07ce4e4110f5 |
| children |
line wrap: on
line source
try: # Python 3+ from time import perf_counter except (ImportError, AttributeError): # Python 2.5-2.7 from time import clock as perf_counter # noqa: F401
