aboutsummaryrefslogtreecommitdiff
path: root/wqflask/maintenance/print_benchmark.py
diff options
context:
space:
mode:
authorPjotr Prins2016-06-17 06:48:01 +0000
committerPjotr Prins2016-06-17 06:48:01 +0000
commit93e3878c8b97ecbf28630e4bb3733a29f4cf45aa (patch)
treeef92de7c75b7899b406e99c97006a7e2b20bd86b /wqflask/maintenance/print_benchmark.py
parenteb84f7c0e384e08b810e052fd3935f6d977b7ea2 (diff)
parent10df36b60273d81678f6630c07a2d8e5a6409282 (diff)
downloadgenenetwork2-93e3878c8b97ecbf28630e4bb3733a29f4cf45aa.tar.gz
Conflict
Diffstat (limited to 'wqflask/maintenance/print_benchmark.py')
-rwxr-xr-xwqflask/maintenance/print_benchmark.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/wqflask/maintenance/print_benchmark.py b/wqflask/maintenance/print_benchmark.py
index 540e0904..ae327cf3 100755
--- a/wqflask/maintenance/print_benchmark.py
+++ b/wqflask/maintenance/print_benchmark.py
@@ -9,34 +9,34 @@ from pprint import pformat as pf
class TheCounter(object):
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
+ TheCounter.Counters[self.__class__.__name__] = self.time_took
-class PrintAll(TheCounter):
+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__':