1 Remove timing from test output
3 --- cython-3.0.11/runtests.py.orig
4 +++ cython-3.0.11/runtests.py
6 lines.append("%-12s: %8.2f sec (%4d, %6.3f / run) - slowest: %s\n" % (
7 metric, t, count, t / count,
8 ', '.join("'{2}:{1}' ({0:.2f}s)".format(*item) for item in heapq.nlargest(self.top_n, top))))
9 - out.write(''.join(lines))
12 class TestBuilder(object):
17 - write('\n#### %s\n' % now())
19 thread = threading.Thread(target=time_stamper, name='time_stamper')