Marcel Telka
2024-04-05 a885899322f8424d6d708e5c3143b6c43488446d
commit | author | age
80dabe 1 Remove timing from test output
MT 2
a88589 3 --- Cython-3.0.10/runtests.py.orig
MT 4 +++ Cython-3.0.10/runtests.py
5 @@ -714,7 +714,6 @@
80dabe 6              lines.append("%-12s: %8.2f sec  (%4d, %6.3f / run) - slowest: %s\n" % (
MT 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))
10  
11  
12  class TestBuilder(object):
a88589 13 @@ -2643,7 +2642,6 @@
80dabe 14                  if stop:
MT 15                      return
16                  sleep(1./4)
17 -            write('\n#### %s\n' % now())
18  
19      thread = threading.Thread(target=time_stamper, name='time_stamper')
be554f 20      thread.daemon = True