fix issue23157 - time_hashlib hadn't been ported to Python 3.
This commit is contained in:
parent
b8f35ff57b
commit
5719ef17ba
|
@ -1,7 +1,8 @@
|
||||||
# It's intended that this script be run by hand. It runs speed tests on
|
# It's intended that this script be run by hand. It runs speed tests on
|
||||||
# hashlib functions; it does not test for correctness.
|
# hashlib functions; it does not test for correctness.
|
||||||
|
|
||||||
import sys, time
|
import sys
|
||||||
|
import time
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,8 +10,8 @@ def creatorFunc():
|
||||||
raise RuntimeError("eek, creatorFunc not overridden")
|
raise RuntimeError("eek, creatorFunc not overridden")
|
||||||
|
|
||||||
def test_scaled_msg(scale, name):
|
def test_scaled_msg(scale, name):
|
||||||
iterations = 106201/scale * 20
|
iterations = 106201//scale * 20
|
||||||
longStr = 'Z'*scale
|
longStr = b'Z'*scale
|
||||||
|
|
||||||
localCF = creatorFunc
|
localCF = creatorFunc
|
||||||
start = time.time()
|
start = time.time()
|
||||||
|
|
Loading…
Reference in New Issue