diff options
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 81020b7..62cd0c7 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -66,10 +66,14 @@ Req-started-unread-response _CS_REQ_STARTED <response_class> Req-sent-unread-response _CS_REQ_SENT <response_class> """ -import mimetools import socket from urlparse import urlsplit import warnings +from test.test_support import catch_warning +with catch_warning(record=False): + warnings.filterwarnings("ignore", ".*mimetools has been removed", + DeprecationWarning) + import mimetools try: from cStringIO import StringIO |