Marcel Telka
2024-04-05 a885899322f8424d6d708e5c3143b6c43488446d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Remove timing from test output
 
--- Cython-3.0.10/runtests.py.orig
+++ Cython-3.0.10/runtests.py
@@ -714,7 +714,6 @@
             lines.append("%-12s: %8.2f sec  (%4d, %6.3f / run) - slowest: %s\n" % (
                 metric, t, count, t / count,
                 ', '.join("'{2}:{1}' ({0:.2f}s)".format(*item) for item in heapq.nlargest(self.top_n, top))))
-        out.write(''.join(lines))
 
 
 class TestBuilder(object):
@@ -2643,7 +2642,6 @@
                 if stop:
                     return
                 sleep(1./4)
-            write('\n#### %s\n' % now())
 
     thread = threading.Thread(target=time_stamper, name='time_stamper')
     thread.daemon = True