Staging
v0.5.1
https://github.com/python/cpython
Revision f681e93e46925e862a8b0fa4b6e9e341fd8de3c2 authored by Victor Stinner on 29 November 2018, 22:38:35 UTC, committed by GitHub on 29 November 2018, 22:38:35 UTC
On Windows, test_env_changed() of test_regrtest is now skipped
because it fails  randomly for an unknown reason on "x86 Windows XP
VS9.0 2.7" buildbot worker.
1 parent 3600300
Raw File
Tip revision: f681e93e46925e862a8b0fa4b6e9e341fd8de3c2 authored by Victor Stinner on 29 November 2018, 22:38:35 UTC
bpo-34021: Windows skips test_regrtest.test_env_changed() (GH-10804)
Tip revision: f681e93
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