Staging
v0.5.1
https://github.com/python/cpython
Revision 9291332de137141057591386b4ba449ae3a5ed48 authored by Andrew MacIntyre on 13 June 2006, 15:04:24 UTC, committed by Andrew MacIntyre on 13 June 2006, 15:04:24 UTC
Heavily revised, comprising revisions:
46640 - original trunk revision (backed out in r46655)
46647 - markup fix (backed out in r46655)
46692:46918 merged from branch aimacintyre-sf1454481

branch tested on buildbots (Windows buildbots had problems
not related to these changes).
1 parent c6f5b3a
Raw File
Tip revision: 9291332de137141057591386b4ba449ae3a5ed48 authored by Andrew MacIntyre on 13 June 2006, 15:04:24 UTC
Patch #1454481: Make thread stack size runtime tunable.
Tip revision: 9291332
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