Mercurial > p > roundup > code
comparison roundup/anypy/time_.py @ 7228:07ce4e4110f5
flake8 fixes: whitespace, remove unused imports
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 18 Mar 2023 14:16:31 -0400 |
| parents | c1227f883177 |
| children | 60a6d50298c4 |
comparison
equal
deleted
inserted
replaced
| 7227:1e004afe87bb | 7228:07ce4e4110f5 |
|---|---|
| 1 try: | 1 try: |
| 2 # Python 3+ | 2 # Python 3+ |
| 3 from time import perf_counter | 3 from time import perf_counter |
| 4 except (ImportError, AttributeError): | 4 except (ImportError, AttributeError): |
| 5 # Python 2.5-2.7 | 5 # Python 2.5-2.7 |
| 6 from time import clock as perf_counter | 6 from time import clock as perf_counter # noqa: F401 |
