diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 18:38:39 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 18:38:39 -0700 |
commit | e218856a903805a8e299ef9dba6e88910d97270c (patch) | |
tree | 79dc6b1bb747023b4b481a286457d68c145a0dd3 /tests/primitives/test_nist.py | |
parent | df146c572fb58df8348947fb201f00193944f016 (diff) | |
download | cryptography-e218856a903805a8e299ef9dba6e88910d97270c.tar.gz cryptography-e218856a903805a8e299ef9dba6e88910d97270c.tar.bz2 cryptography-e218856a903805a8e299ef9dba6e88910d97270c.zip |
py3k
Diffstat (limited to 'tests/primitives/test_nist.py')
-rw-r--r-- | tests/primitives/test_nist.py | 2 |
1 files changed, 1 insertions, 1 deletions
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"] |