##// END OF EJS Templates
py3: use range() instead of xrange()...
Pulkit Goyal -
r42562:c2d10506 default
parent child Browse files
Show More
@@ -408,7 +408,7 b' def _timer(fm, func, setup=None, title=N'
408 408 count = 0
409 409 if profiler is None:
410 410 profiler = NOOPCTX
411 for i in xrange(prerun):
411 for i in range(prerun):
412 412 if setup is not None:
413 413 setup()
414 414 func()
General Comments 0
You need to be logged in to leave comments. Login now