From 204a308be0f741726b9a620d88fbc22b22124c81 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 29 Dec 2023 18:55:37 +0000 Subject: Namespace all modules under gn2. We move all modules under a gn2 directory. This is important for "correct" packaging and deployment as a Guix service. --- wqflask/maintenance/print_benchmark.py | 45 ---------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 wqflask/maintenance/print_benchmark.py (limited to 'wqflask/maintenance/print_benchmark.py') diff --git a/wqflask/maintenance/print_benchmark.py b/wqflask/maintenance/print_benchmark.py deleted file mode 100644 index 9d12da8a..00000000 --- a/wqflask/maintenance/print_benchmark.py +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/python - -import time - -from pprint import pformat as pf - - -class TheCounter: - Counters = {} - - def __init__(self): - start_time = time.time() - for counter in range(170000): - self.print_it(counter) - self.time_took = time.time() - start_time - TheCounter.Counters[self.__class__.__name__] = self.time_took - - -class PrintAll(TheCounter): - def print_it(self, counter): - print(counter) - - -class PrintSome(TheCounter): - def print_it(self, counter): - if counter % 1000 == 0: - print(counter) - - -class PrintNone(TheCounter): - def print_it(self, counter): - pass - - -def new_main(): - print("Running new_main") - tests = [PrintAll, PrintSome, PrintNone] - for test in tests: - test() - - print(pf(TheCounter.Counters)) - - -if __name__ == '__main__': - new_main() -- cgit v1.2.3