Skip to content

Commit

Permalink
Python 3: httplib
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 21, 2017
1 parent 596d6fc commit d0af7fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/zope/server/http/tests/test_httpserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from zope.server.tests.asyncerror import AsyncoreErrorHook
from zope.interface import implementer

from httplib import HTTPConnection
from httplib import HTTPResponse as ClientHTTPResponse
from six.moves.http_client import HTTPConnection
from six.moves.http_client import HTTPResponse as ClientHTTPResponse

from time import sleep, time

Expand Down
2 changes: 1 addition & 1 deletion src/zope/server/http/tests/test_wsgiserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from asyncore import socket_map, poll
from threading import Thread
from time import sleep
from httplib import HTTPConnection
from six.moves.http_client import HTTPConnection

from zope.server.taskthreads import ThreadedTaskDispatcher

Expand Down

0 comments on commit d0af7fe

Please sign in to comment.