rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / python / Cython / patches / 04-test-no-time.patch
blobbabeb7a6d244f37e87f2f174b396b8f05a98605d
1 Remove timing from test output
3 --- cython-3.0.11/runtests.py.orig
4 +++ cython-3.0.11/runtests.py
5 @@ -714,7 +714,6 @@
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):
13 @@ -2647,7 +2646,6 @@
14 if stop:
15 return
16 sleep(1./4)
17 - write('\n#### %s\n' % now())
19 thread = threading.Thread(target=time_stamper, name='time_stamper')
20 thread.daemon = True