Closed J08nY closed 5 years ago
Yep, what do you propose? There is no adequate non-deprecated function like time.clock
in both Python 2 and Python 3.
It'd go for
try:
from time import process_time # Python 3
except ImportError:
from time import clock as process_time # Python 2
It'd go for
try: from time import process_time # Python 3 except ImportError: from time import clock as process_time # Python 2
This should now be fixed and ready to merge.
Ta!
This needs a Python 2 clutch I think