Whitespace normalization.

This commit is contained in:
Tim Peters 2001-11-13 21:51:26 +00:00
parent 135cce8718
commit 8876848323
5 changed files with 6 additions and 8 deletions

View file

@ -35,7 +35,7 @@ def __init__(self, key, msg = None, digestmod = None):
self.outer = digestmod.new()
self.inner = digestmod.new()
self.digest_size = digestmod.digest_size
blocksize = 64
ipad = "\x36" * blocksize
opad = "\x5C" * blocksize
@ -97,4 +97,3 @@ def new(key, msg = None, digestmod = None):
method.
"""
return HMAC(key, msg, digestmod)

View file

@ -283,7 +283,7 @@ def _safe_repr(object, context, maxlevels, level):
recursive = 1
del context[objid]
return format % _commajoin(components), readable, recursive
rep = `object`
return rep, (rep and not rep.startswith('<')), 0

View file

@ -24,7 +24,7 @@ def __init__(self, *args):
unittest.TestCase.__init__(self, *args)
self._dkeys = self._dict.keys()
self._dkeys.sort()
def test_dumbdbm_creation(self):
for ext in [".dir", ".dat", ".bak"]:
try: os.unlink(self._fname+ext)
@ -57,7 +57,7 @@ def read_helper(self, f):
keys = self.keys_helper(f)
for key in self._dict:
self.assertEqual(self._dict[key], f[key])
def keys_helper(self, f):
keys = f.keys()
keys.sort()

View file

@ -45,7 +45,7 @@ def test_withmodule(self):
h = hmac.HMAC("key", "", sha)
except:
self.fail("Constructor call with sha module raised exception.")
class SanityTestCase(unittest.TestCase):
def test_default_is_md5(self):
"""Testing if HMAC defaults to MD5 algorithm."""
@ -106,4 +106,3 @@ def test_main():
if __name__ == "__main__":
test_main()

View file

@ -1,6 +1,6 @@
#
# Test suite to check compliance with PEP 247, the standard API for
# hashing algorithms.
# hashing algorithms.
#
import md5, sha, hmac