Staging
v0.5.1
https://github.com/python/cpython
Revision 58af7ef55df997ab615748205ef6914f5373f953 authored by Martin v. Löwis on 25 August 2006, 00:11:38 UTC, committed by Martin v. Löwis on 25 August 2006, 00:11:38 UTC
1 parent 7b3c031
Raw File
Tip revision: 58af7ef55df997ab615748205ef6914f5373f953 authored by Martin v. Löwis on 25 August 2006, 00:11:38 UTC
Patch #1545507: Exclude ctypes package in Win64 MSI file.
Tip revision: 58af7ef
md5.py
# $Id$
#
#  Copyright (C) 2005   Gregory P. Smith (greg@electricrain.com)
#  Licensed to PSF under a Contributor Agreement.

from hashlib import md5
new = md5

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