diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 02:05:26 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 02:05:26 (GMT) |
commit | 86508cc88bc00e3891d8efe4fbb79cacd40c9b69 (patch) | |
tree | 7d043cca2d8d5e67b693d51808dcd37f3db369a0 /Lib/hashlib.py | |
parent | a59c59f9460ddc9c9a54965414c60be50ee5873b (diff) | |
download | cpython-86508cc88bc00e3891d8efe4fbb79cacd40c9b69.zip cpython-86508cc88bc00e3891d8efe4fbb79cacd40c9b69.tar.gz cpython-86508cc88bc00e3891d8efe4fbb79cacd40c9b69.tar.bz2 |
Merged revisions 78528 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78528 | gregory.p.smith | 2010-02-28 18:01:47 -0800 (Sun, 28 Feb 2010) | 2 lines
Adds the hashlib.algorithms attribute. See issue7418.
........
Diffstat (limited to 'Lib/hashlib.py')
-rw-r--r-- | Lib/hashlib.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/hashlib.py b/Lib/hashlib.py index 9709cde..aacb268 100644 --- a/Lib/hashlib.py +++ b/Lib/hashlib.py @@ -57,7 +57,9 @@ More condensed: # always available algorithm is added. __always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512') -__all__ = __always_supported + ('new',) +algorithms = __always_supported + +__all__ = __always_supported + ('new', 'algorithms') def __get_builtin_constructor(name): |