Staging
v0.5.1
https://github.com/python/cpython
Revision 5ca1cba2523645b6043adf5c59bb448b8d22d816 authored by Nick Coghlan on 11 February 2008, 12:53:42 UTC, committed by Nick Coghlan on 11 February 2008, 12:53:42 UTC
1 parent 0b5c17a
Raw File
Tip revision: 5ca1cba2523645b6043adf5c59bb448b8d22d816 authored by Nick Coghlan on 11 February 2008, 12:53:42 UTC
Backport relevant part of issue 2021 fix (r60695): Support with statement properly in tempfile.NamedTemporaryFile
Tip revision: 5ca1cba
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