From c3f810fb56d8d7ac37ae9c13cbd03d4c7f71dd2e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 21 Aug 2010 02:41:33 +0000 Subject: [PATCH] remove outdated comment --- Lib/hmac.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Lib/hmac.py b/Lib/hmac.py index 0f59fd4847a..4bbdbc47787 100644 --- a/Lib/hmac.py +++ b/Lib/hmac.py @@ -58,8 +58,6 @@ class HMAC: if hasattr(self.inner, 'block_size'): blocksize = self.inner.block_size if blocksize < 16: - # Very low blocksize, most likely a legacy value like - # Lib/sha.py and Lib/md5.py have. _warnings.warn('block_size of %d seems too small; using our ' 'default of %d.' % (blocksize, self.blocksize), RuntimeWarning, 2) @@ -79,9 +77,6 @@ class HMAC: if msg is not None: self.update(msg) -## def clear(self): -## raise NotImplementedError, "clear() method not available in HMAC." - def update(self, msg): """Update this hashing object with the string msg. """