Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7eec2179
Commit
7eec2179
authored
May 30, 2007
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Have md5 raise a DeprecationWarning as per PEP 4.
parent
c249bdab
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
4 deletions
+17
-4
Lib/md5.py
Lib/md5.py
+4
-0
Lib/test/test_md5.py
Lib/test/test_md5.py
+3
-0
Lib/test/test_pep247.py
Lib/test/test_pep247.py
+4
-0
Lib/test/test_tarfile.py
Lib/test/test_tarfile.py
+2
-2
Lib/uuid.py
Lib/uuid.py
+2
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/md5.py
View file @
7eec2179
...
...
@@ -3,6 +3,10 @@
# Copyright (C) 2005 Gregory P. Smith (greg@electricrain.com)
# 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
...
...
Lib/test/test_md5.py
View file @
7eec2179
# Testing md5 module
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
"the md5 module is deprecated.*"
,
DeprecationWarning
)
import
unittest
from
md5
import
md5
...
...
Lib/test/test_pep247.py
View file @
7eec2179
...
...
@@ -3,6 +3,10 @@
# hashing algorithms.
#
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
"the md5 module is deprecated.*"
,
DeprecationWarning
)
import
md5
,
sha
,
hmac
def
check_hash_module
(
module
,
key
=
None
):
...
...
Lib/test/test_tarfile.py
View file @
7eec2179
...
...
@@ -5,7 +5,7 @@ import os
import
shutil
import
tempfile
import
StringIO
import
md5
from
hashlib
import
md5
import
errno
import
unittest
...
...
@@ -25,7 +25,7 @@ except ImportError:
bz2
=
None
def
md5sum
(
data
):
return
md5
.
new
(
data
).
hexdigest
()
return
md5
(
data
).
hexdigest
()
def
path
(
path
):
return
test_support
.
findfile
(
path
)
...
...
Lib/uuid.py
View file @
7eec2179
...
...
@@ -506,8 +506,8 @@ def uuid1(node=None, clock_seq=None):
def
uuid3
(
namespace
,
name
):
"""Generate a UUID from the MD5 hash of a namespace UUID and a name."""
import
md5
hash
=
md5
.
md5
(
namespace
.
bytes
+
name
).
digest
()
from
hashlib
import
md5
hash
=
md5
(
namespace
.
bytes
+
name
).
digest
()
return
UUID
(
bytes
=
hash
[:
16
],
version
=
3
)
def
uuid4
():
...
...
Misc/NEWS
View file @
7eec2179
...
...
@@ -220,6 +220,8 @@ Core and builtins
Library
-------
- md5 now raises a DeprecationWarning upon import.
- mimify now raises a DeprecationWarning upon import.
- MimeWriter now raises a DeprecationWarning upon import.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment