Staging
v0.8.1
https://github.com/python/cpython
Revision 504a48f90ab957c1ebe8fc2c4f173f410f707f9e authored by Amaury Forgeot d'Arc on 29 March 2008, 01:41:08 UTC, committed by Amaury Forgeot d'Arc on 29 March 2008, 01:41:08 UTC
1 parent 4130930
Raw File
Tip revision: 504a48f90ab957c1ebe8fc2c4f173f410f707f9e authored by Amaury Forgeot d'Arc on 29 March 2008, 01:41:08 UTC
Revert my experiment. I found one reason of failures in test_logging.
Tip revision: 504a48f
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