# HG changeset patch # User Augie Fackler # Date 1503428272 14400 # Node ID 3b1add64123238c162ff87710ec7000854a4b3d6 # Parent 904bc1dc2694d0d3ab9dfd2b9200fd8f2b461f8a tests: update test-archive to always use hashlib We don't need the fallback to the old modules anymore. diff -r 904bc1dc2694 -r 3b1add641232 tests/test-archive.t --- a/tests/test-archive.t Tue Aug 22 14:57:10 2017 -0400 +++ b/tests/test-archive.t Tue Aug 22 14:57:52 2017 -0400 @@ -211,15 +211,12 @@ > done $ cat > md5comp.py < from __future__ import print_function - > try: - > from hashlib import md5 - > except ImportError: - > from md5 import md5 + > from __future__ import absolute_import, print_function + > import hashlib > import sys > f1, f2 = sys.argv[1:3] - > h1 = md5(open(f1, 'rb').read()).hexdigest() - > h2 = md5(open(f2, 'rb').read()).hexdigest() + > h1 = hashlib.md5(open(f1, 'rb').read()).hexdigest() + > h2 = hashlib.md5(open(f2, 'rb').read()).hexdigest() > print(h1 == h2 or "md5 differ: " + repr((h1, h2))) > EOF