Mercurial > p > roundup > code
view roundup/anypy/time_.py @ 7221:cbeac604d9d5
Test pbkdf2_unpack error conditions
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 12 Mar 2023 21:19:51 -0400 |
| parents | c1227f883177 |
| children | 07ce4e4110f5 |
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
