Staging
v0.5.1
https://github.com/python/cpython
Revision af627902aaf879cf64bf6b4ebd73f4dcf74e29db authored by Ned Deily on 15 November 2014, 02:57:13 UTC, committed by Ned Deily on 15 November 2014, 02:57:13 UTC
1 parent 3010182
Raw File
Tip revision: af627902aaf879cf64bf6b4ebd73f4dcf74e29db authored by Ned Deily on 15 November 2014, 02:57:13 UTC
Update OS X installer documentation files for 2.7.9.
Tip revision: af62790
md5.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@krypto.org)
#  Licensed to PSF under a Contributor Agreement.

import warnings
warnings.warn("the md5 module is deprecated; use hashlib instead",
                DeprecationWarning, 2)

from hashlib import md5
new = md5

blocksize = 1        # legacy value (wrong in any useful sense)
digest_size = 16
back to top