Mercurial > p > roundup > code
annotate roundup/anypy/time_.py @ 8540:e8d1da6e3571
bug: fix traceback in roundup-admin init with bad config values
initialize accepts setting values for config.ini file settings. If
they are not valid, you got a python traceback.
ConfigurationError exceptions are now trapped. The admin.py's
usageError_feedback method is used to inform the user. Also the
feedback message now starts with a newline making it easier to read by
separating it from command that caused the issue.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 23 Mar 2026 13:18:41 -0400 |
| parents | 60a6d50298c4 |
| children |
| 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 |
|
7774
60a6d50298c4
chore: fix whitespace before comment
John Rouillard <rouilj@ieee.org>
parents:
7228
diff
changeset
|
6 from time import clock as perf_counter # noqa: F401 |
