From e218856a903805a8e299ef9dba6e88910d97270c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 21 Oct 2013 18:38:39 -0700 Subject: py3k --- tests/primitives/test_nist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py index 0c847879..1f05ce98 100644 --- a/tests/primitives/test_nist.py +++ b/tests/primitives/test_nist.py @@ -29,7 +29,7 @@ from ..utils import load_nist_vectors_from_file def load_3des_nist_vectors_from_file(path, op): vectors = [] for vector in load_nist_vectors_from_file(path, op): - for i in xrange(1, 4): + for i in range(1, 4): plaintext = vector.get("plaintext{0}".format(i)) if plaintext is None: plaintext = vector["plaintext"] -- cgit v1.2.3