aboutsummaryrefslogtreecommitdiff
path: root/test/ec/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ec/utils.py')
-rw-r--r--test/ec/utils.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ec/utils.py b/test/ec/utils.py
index 67a9cc0..0d0a875 100644
--- a/test/ec/utils.py
+++ b/test/ec/utils.py
@@ -1,12 +1,6 @@
from itertools import product
from functools import reduce
-
-def slow(func):
- func.slow = 1
- return func
-
-
def cartesian(*items):
for cart in product(*items):
yield reduce(lambda x, y: x + y, cart)