Deprecation Warning time.clock()
Bug #1830738 reported by
claudio
This bug affects 6 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Python-Crypto |
New
|
Undecided
|
Unassigned |
Bug Description
There is a call to time.clock in Crypto/
it causes the following warning, in the future may become a problem:
DeprecationWarning: time.clock has been deprecated in Python 3.3 and will be removed from Python 3.8: use time.perf_counter or time.process_time instead
t = time.clock()
To post a comment you must log in.
This is now busted as time.clock() has been removed from python3.8.
s/time. clock/time. process_ time/ and all is good again.