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