From c475deec6c69d509ac828cca437e2b9502f7b0c3 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 22 Aug 2015 09:59:25 +0200 Subject: Switched to Python 3 --- tests/realmath/generate.py | 5 +---- tests/realmath/run-test.sh | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) (limited to 'tests/realmath') diff --git a/tests/realmath/generate.py b/tests/realmath/generate.py index aee21118..19d01c7c 100644 --- a/tests/realmath/generate.py +++ b/tests/realmath/generate.py @@ -1,7 +1,4 @@ -#!/usr/bin/python - -from __future__ import division -from __future__ import print_function +#!/usr/bin/env python3 import sys import random diff --git a/tests/realmath/run-test.sh b/tests/realmath/run-test.sh index 8419688c..f1ec5476 100755 --- a/tests/realmath/run-test.sh +++ b/tests/realmath/run-test.sh @@ -4,7 +4,7 @@ set -e rm -rf temp mkdir -p temp echo "generating tests.." -python generate.py +python3 generate.py cd temp echo "running tests.." -- cgit v1.2.3