diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-16 22:00:27 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-16 22:00:27 (GMT) |
commit | 721b1457a0e36e49fe7f94a8f826661aa871fb08 (patch) | |
tree | 248753b36ae96e8a838931c73ce68808f5d1e30c | |
parent | 0a4128eae2dd808750b7196151ab3d7a99585353 (diff) | |
download | cpython-721b1457a0e36e49fe7f94a8f826661aa871fb08.zip cpython-721b1457a0e36e49fe7f94a8f826661aa871fb08.tar.gz cpython-721b1457a0e36e49fe7f94a8f826661aa871fb08.tar.bz2 |
Silence DeprecationWarning raised by mimetools and rfc822 in cgi.
-rwxr-xr-x | Lib/cgi.py | 11 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 10 insertions, 3 deletions
@@ -38,9 +38,16 @@ from operator import attrgetter import sys import os import urllib -import mimetools -import rfc822 import UserDict +from test.test_support import catch_warning +from warnings import filterwarnings +with catch_warning(record=False): + filterwarnings("ignore", ".*mimetools has been removed", + DeprecationWarning) + import mimetools + filterwarnings("ignore", ".*rfc822 has been removed", DeprecationWarning) + import rfc822 + try: from cStringIO import StringIO except ImportError: @@ -49,7 +49,7 @@ Library ------- - Silence the DeprecationWarning raised when importing mimetools in - BaseHTTPServer, httplib. + BaseHTTPServer, cgi (and rfc822), httplib. - Issue #2776: fixed small issue when handling an URL with double slash after a 302 response in the case of not going through a proxy. |