[Python-checkins] cpython: Download hashlib test vectors from pythontest.net

christian.heimes python-checkins at python.org
Tue Sep 6 19:21:42 EDT 2016


https://hg.python.org/cpython/rev/c49ff8dbf907
changeset:   103170:c49ff8dbf907
user:        Christian Heimes <christian at python.org>
date:        Wed Sep 07 01:21:14 2016 +0200
summary:
  Download hashlib test vectors from pythontest.net

files:
  Lib/test/test_hashlib.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py
--- a/Lib/test/test_hashlib.py
+++ b/Lib/test/test_hashlib.py
@@ -44,7 +44,7 @@
     return r
 
 
-URL = "https://raw.githubusercontent.com/tiran/python_vectors/master/{}.txt"
+URL = "http://www.pythontest.net/hashlib/{}.txt"
 
 def read_vectors(hash_name):
     with support.open_urlresource(URL.format(hash_name)) as f:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list