annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7209
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
1 try:
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
2 # Python 3+
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
3 from time import perf_counter
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
4 except (ImportError, AttributeError):
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
5 # Python 2.5-2.7
c1227f883177 Implement password hash testing using new roundup-admin perftest.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
6 from time import clock as perf_counter

Roundup Issue Tracker: http://roundup-tracker.org/