diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-11-24 03:02:02 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-11-24 03:02:02 (GMT) |
| commit | e3e7d40514e5dd0c3847682a719577efcfae1d8f (patch) | |
| tree | fa309a48cefeaaf043c182dcca5e7ab58ab8200f /Lib/test/test_httplib.py | |
| parent | b206473ef8a7abe9abf5ab8776ea3bcb90adc747 (diff) | |
| download | cpython-e3e7d40514e5dd0c3847682a719577efcfae1d8f.zip cpython-e3e7d40514e5dd0c3847682a719577efcfae1d8f.tar.gz cpython-e3e7d40514e5dd0c3847682a719577efcfae1d8f.tar.bz2 | |
pep 476: verify certificates by default (#22417)
Diffstat (limited to 'Lib/test/test_httplib.py')
| -rw-r--r-- | Lib/test/test_httplib.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 60165c1..e68555a 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -1,10 +1,9 @@ import httplib import array -import httplib -import os import StringIO import socket import errno +import os import unittest TestCase = unittest.TestCase |
