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.
........
This commit is contained in:
Gregory P. Smith 2010-03-01 02:05:26 +00:00
parent a59c59f946
commit 86508cc88b
3 changed files with 17 additions and 1 deletions

View file

@ -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):