mirror of https://github.com/django/django.git
Fixed a few tests to run on Python 2.5. Thanks, Florian Apolloner.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17273 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4403ce10b7
commit
ff1f423d29
|
@ -141,7 +141,7 @@ class TarArchive(BaseArchive):
|
||||||
name = self.split_leading_dir(name)[1]
|
name = self.split_leading_dir(name)[1]
|
||||||
filename = os.path.join(to_path, name)
|
filename = os.path.join(to_path, name)
|
||||||
if member.isdir():
|
if member.isdir():
|
||||||
if not os.path.exists(filename):
|
if filename and not os.path.exists(filename):
|
||||||
os.makedirs(filename)
|
os.makedirs(filename)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
@ -153,7 +153,7 @@ class TarArchive(BaseArchive):
|
||||||
(name, member.name, sys.exc_info()[1]))
|
(name, member.name, sys.exc_info()[1]))
|
||||||
else:
|
else:
|
||||||
dirname = os.path.dirname(filename)
|
dirname = os.path.dirname(filename)
|
||||||
if not os.path.exists(dirname):
|
if dirname and not os.path.exists(dirname):
|
||||||
os.makedirs(dirname)
|
os.makedirs(dirname)
|
||||||
with open(filename, 'wb') as outfile:
|
with open(filename, 'wb') as outfile:
|
||||||
shutil.copyfileobj(extracted, outfile)
|
shutil.copyfileobj(extracted, outfile)
|
||||||
|
|
|
@ -126,8 +126,8 @@ class TestUtilsCryptoPBKDF2(unittest.TestCase):
|
||||||
times as long as running with 1 iteration.
|
times as long as running with 1 iteration.
|
||||||
"""
|
"""
|
||||||
n1, n2 = 100, 10000
|
n1, n2 = 100, 10000
|
||||||
elapsed = lambda f: timeit.timeit(f, number=1)
|
elapsed = lambda f: timeit.Timer(f, 'from django.utils.crypto import pbkdf2').timeit(number=1)
|
||||||
t1 = elapsed(lambda: pbkdf2("password", "salt", iterations=n1))
|
t1 = elapsed('pbkdf2("password", "salt", iterations=%d)' % n1)
|
||||||
t2 = elapsed(lambda: pbkdf2("password", "salt", iterations=n2))
|
t2 = elapsed('pbkdf2("password", "salt", iterations=%d)' % n2)
|
||||||
measured_scale_exponent = math.log(t2 / t1, n2 / n1)
|
measured_scale_exponent = math.log(t2 / t1, n2 / n1)
|
||||||
self.assertLess(measured_scale_exponent, 1.1)
|
self.assertLess(measured_scale_exponent, 1.1)
|
||||||
|
|
Loading…
Reference in New Issue