Staging
v0.5.1
https://github.com/python/cpython
Revision fb52e38aba798042d1fae3959e318d149ee4d5d7 authored by Georg Brandl on 31 October 2014, 09:25:38 UTC, committed by Georg Brandl on 31 October 2014, 09:25:38 UTC
1 parent c182f88
Raw File
Tip revision: fb52e38aba798042d1fae3959e318d149ee4d5d7 authored by Georg Brandl on 31 October 2014, 09:25:38 UTC
#22613: document Cmd.cmdqueue (thanks Jacques Ducasse)
Tip revision: fb52e38
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