commit | c2aa09ad8055ba3e03da297608552d04b42e9aac | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Thu May 31 19:20:00 2007 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Thu May 31 19:20:00 2007 +0000 |
tree | d349deae79ade87b4e39098d067e114f50e1bcbb | |
parent | 03b75fa4e1331d4c9f5ff6385ff54fb522bc4cab [diff] [blame] |
Have the sha module raise a DeprecationWarning as specified in PEP 4.
diff --git a/Lib/test/test_pep247.py b/Lib/test/test_pep247.py index 1eb9462..6add210 100644 --- a/Lib/test/test_pep247.py +++ b/Lib/test/test_pep247.py
@@ -6,6 +6,8 @@ import warnings warnings.filterwarnings("ignore", "the md5 module is deprecated.*", DeprecationWarning) +warnings.filterwarnings("ignore", "the sha module is deprecated.*", + DeprecationWarning) import md5, sha, hmac