]> Nishi Git Mirror - gwion.git/commitdiff
:white_check_mark: Python
authorfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 2 Jul 2019 20:08:58 +0000 (22:08 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 2 Jul 2019 20:08:58 +0000 (22:08 +0200)
tests/benchmark/binary_trees.py
tests/benchmark/method_call.py

index eb3a9b9ad23904c606ee48f91e51a84e3778da99..b08adf3b262b52147654ba66201f275f156e9f9b 100644 (file)
@@ -6,8 +6,6 @@
 # modified by Heinrich Acker
 from __future__ import print_function
 
-import time
-
 # Map "range" to an efficient range in both Python 2 and 3.
 try:
     range = xrange
index 17af559940e4b187c2bf2a1464dbf4667f12ccf0..c307a8991f499bcb0b06898c064596b623fc8c1a 100644 (file)
@@ -2,9 +2,6 @@
 # http://www.bagley.org/~doug/shootout/
 from __future__ import print_function
 
-import sys
-import time
-
 # Map "range" to an efficient range in both Python 2 and 3.
 try:
     range = xrange
@@ -34,8 +31,6 @@ class NthToggle(Toggle):
 
 
 def main():
-    start = time.clock()
-
     NUM = 100000
 
     val = 1
@@ -74,7 +69,4 @@ def main():
     else:
         print("false")
 
-    print("elapsed: " + str(time.clock() - start))
-
-
 main()