##// END OF EJS Templates
Replace deprecated time.time() with time.perf_counter()...
ammarmallik -
Show More
@@ -915,7 +915,7 b' python-profiler package from non-free.""")'
915 Number of times to execute `run`.
915 Number of times to execute `run`.
916
916
917 """
917 """
918 twall0 = time.time()
918 twall0 = time.perf_counter()
919 if nruns == 1:
919 if nruns == 1:
920 t0 = clock2()
920 t0 = clock2()
921 run()
921 run()
@@ -938,7 +938,7 b' python-profiler package from non-free.""")'
938 print(" Times : %10s %10s" % ('Total', 'Per run'))
938 print(" Times : %10s %10s" % ('Total', 'Per run'))
939 print(" User : %10.2f s, %10.2f s." % (t_usr, t_usr / nruns))
939 print(" User : %10.2f s, %10.2f s." % (t_usr, t_usr / nruns))
940 print(" System : %10.2f s, %10.2f s." % (t_sys, t_sys / nruns))
940 print(" System : %10.2f s, %10.2f s." % (t_sys, t_sys / nruns))
941 twall1 = time.time()
941 twall1 = time.perf_counter()
942 print("Wall time: %10.2f s." % (twall1 - twall0))
942 print("Wall time: %10.2f s." % (twall1 - twall0))
943
943
944 @skip_doctest
944 @skip_doctest
General Comments 0
You need to be logged in to leave comments. Login now