Staging
v0.5.1
https://github.com/python/cpython
Revision b19dd66833923f922bfc81cf9c1269570c15248d authored by Matthias Klose on 23 November 2008, 13:42:55 UTC, committed by Matthias Klose on 23 November 2008, 13:42:55 UTC
- Modules/Setup.dist: Mention _functools in section "Modules that should
  always be present (non UNIX dependent)"
1 parent 74b458c
Raw File
Tip revision: b19dd66833923f922bfc81cf9c1269570c15248d authored by Matthias Klose on 23 November 2008, 13:42:55 UTC
Merge 67349 from the trunk:
Tip revision: b19dd66
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