Skip to content

Commit

Permalink
Removing extra, unused imports (for: urllib3#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguystone committed Jun 19, 2012
1 parent 1bbda4e commit 0995012
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_connectionpool.py
Expand Up @@ -9,14 +9,14 @@
TimeoutError,
)

from socket import error as SocketError, timeout as SocketTimeout
from socket import timeout as SocketTimeout
from ssl import SSLError as BaseSSLError

try: # Python 3
from queue import LifoQueue, Empty, Full
from queue import Empty
from http.client import HTTPException
except ImportError:
from Queue import LifoQueue, Empty, Full
from Queue import Empty
from httplib import HTTPException

class TestConnectionPool(unittest.TestCase):
Expand Down

0 comments on commit 0995012

Please sign in to comment.