From: Gregory P. Smith Date: Sun, 4 Jan 2015 08:36:04 +0000 (-0800) Subject: fix issue23157 - time_hashlib hadn't been ported to Python 3. X-Git-Tag: v3.4.3rc1~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5719ef17bae439eac9c59fc7a36ade60e6341659;p=python fix issue23157 - time_hashlib hadn't been ported to Python 3. --- diff --git a/Lib/test/time_hashlib.py b/Lib/test/time_hashlib.py index d939463063..2585ecb782 100644 --- a/Lib/test/time_hashlib.py +++ b/Lib/test/time_hashlib.py @@ -1,7 +1,8 @@ # It's intended that this script be run by hand. It runs speed tests on # hashlib functions; it does not test for correctness. -import sys, time +import sys +import time import hashlib @@ -9,8 +10,8 @@ def creatorFunc(): raise RuntimeError("eek, creatorFunc not overridden") def test_scaled_msg(scale, name): - iterations = 106201/scale * 20 - longStr = 'Z'*scale + iterations = 106201//scale * 20 + longStr = b'Z'*scale localCF = creatorFunc start = time.time()