annotate roundup/anypy/time_.py @ 7674:b8aef93178db

fix: quote variable substitution To prevent issues with spaces in the variable. The var should be a single word but it pays to be careful. Courtesy of https://www.shellcheck.net/
author John Rouillard <rouilj@ieee.org>
date Tue, 24 Oct 2023 21:45:05 -0400
parents 07ce4e4110f5
children 60a6d50298c4
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
7228
07ce4e4110f5 flake8 fixes: whitespace, remove unused imports
John Rouillard <rouilj@ieee.org>
parents: 7209
diff changeset
6 from time import clock as perf_counter # noqa: F401

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