b18fa3
diff --git a/requests/__init__.py b/requests/__init__.py
b18fa3
index 446500b..8257b61 100644
b18fa3
--- a/requests/__init__.py
b18fa3
+++ b/requests/__init__.py
b18fa3
@@ -50,7 +50,7 @@ __copyright__ = 'Copyright 2015 Kenneth Reitz'
b18fa3
 
b18fa3
 # Attempt to enable urllib3's SNI support, if possible
b18fa3
 try:
b18fa3
-    from .packages.urllib3.contrib import pyopenssl
b18fa3
+    from urllib3.contrib import pyopenssl
b18fa3
     pyopenssl.inject_into_urllib3()
b18fa3
 except ImportError:
b18fa3
     pass
b18fa3
diff --git a/requests/adapters.py b/requests/adapters.py
b18fa3
index 02e0dd1..daae42e 100644
b18fa3
--- a/requests/adapters.py
b18fa3
+++ b/requests/adapters.py
b18fa3
@@ -11,22 +11,22 @@ and maintain connections.
b18fa3
 import socket
b18fa3
 
b18fa3
 from .models import Response
b18fa3
-from .packages.urllib3.poolmanager import PoolManager, proxy_from_url
b18fa3
-from .packages.urllib3.response import HTTPResponse
b18fa3
-from .packages.urllib3.util import Timeout as TimeoutSauce
b18fa3
-from .packages.urllib3.util.retry import Retry
b18fa3
+from urllib3.poolmanager import PoolManager, proxy_from_url
b18fa3
+from urllib3.response import HTTPResponse
b18fa3
+from urllib3.util import Timeout as TimeoutSauce
b18fa3
+from urllib3.util.retry import Retry
b18fa3
 from .compat import urlparse, basestring
b18fa3
 from .utils import (DEFAULT_CA_BUNDLE_PATH, get_encoding_from_headers,
b18fa3
                     prepend_scheme_if_needed, get_auth_from_url, urldefragauth)
b18fa3
 from .structures import CaseInsensitiveDict
b18fa3
-from .packages.urllib3.exceptions import ConnectTimeoutError
b18fa3
-from .packages.urllib3.exceptions import HTTPError as _HTTPError
b18fa3
-from .packages.urllib3.exceptions import MaxRetryError
b18fa3
-from .packages.urllib3.exceptions import ProxyError as _ProxyError
b18fa3
-from .packages.urllib3.exceptions import ProtocolError
b18fa3
-from .packages.urllib3.exceptions import ReadTimeoutError
b18fa3
-from .packages.urllib3.exceptions import SSLError as _SSLError
b18fa3
-from .packages.urllib3.exceptions import ResponseError
b18fa3
+from urllib3.exceptions import ConnectTimeoutError
b18fa3
+from urllib3.exceptions import HTTPError as _HTTPError
b18fa3
+from urllib3.exceptions import MaxRetryError
b18fa3
+from urllib3.exceptions import ProxyError as _ProxyError
b18fa3
+from urllib3.exceptions import ProtocolError
b18fa3
+from urllib3.exceptions import ReadTimeoutError
b18fa3
+from urllib3.exceptions import SSLError as _SSLError
b18fa3
+from urllib3.exceptions import ResponseError
b18fa3
 from .cookies import extract_cookies_to_jar
b18fa3
 from .exceptions import (ConnectionError, ConnectTimeout, ReadTimeout, SSLError,
b18fa3
                          ProxyError, RetryError)
b18fa3
diff --git a/requests/compat.py b/requests/compat.py
b18fa3
index 40bb6c5..4232288 100644
b18fa3
--- a/requests/compat.py
b18fa3
+++ b/requests/compat.py
b18fa3
@@ -4,7 +4,7 @@
b18fa3
 pythoncompat
b18fa3
 """
b18fa3
 
b18fa3
-from .packages import chardet
b18fa3
+import chardet
b18fa3
 
b18fa3
 import sys
b18fa3
 
b18fa3
diff --git a/requests/exceptions.py b/requests/exceptions.py
b18fa3
index 89135a8..b70c525 100644
b18fa3
--- a/requests/exceptions.py
b18fa3
+++ b/requests/exceptions.py
b18fa3
@@ -7,7 +7,7 @@ requests.exceptions
b18fa3
 This module contains the set of Requests' exceptions.
b18fa3
 
b18fa3
 """
b18fa3
-from .packages.urllib3.exceptions import HTTPError as BaseHTTPError
b18fa3
+from urllib3.exceptions import HTTPError as BaseHTTPError
b18fa3
 
b18fa3
 
b18fa3
 class RequestException(IOError):
b18fa3
diff --git a/requests/models.py b/requests/models.py
b18fa3
index 419cf0a..131b88d 100644
b18fa3
--- a/requests/models.py
b18fa3
+++ b/requests/models.py
b18fa3
@@ -16,10 +16,10 @@ from .structures import CaseInsensitiveDict
b18fa3
 
b18fa3
 from .auth import HTTPBasicAuth
b18fa3
 from .cookies import cookiejar_from_dict, get_cookie_header
b18fa3
-from .packages.urllib3.fields import RequestField
b18fa3
-from .packages.urllib3.filepost import encode_multipart_formdata
b18fa3
-from .packages.urllib3.util import parse_url
b18fa3
-from .packages.urllib3.exceptions import (
b18fa3
+from urllib3.fields import RequestField
b18fa3
+from urllib3.filepost import encode_multipart_formdata
b18fa3
+from urllib3.util import parse_url
b18fa3
+from urllib3.exceptions import (
b18fa3
     DecodeError, ReadTimeoutError, ProtocolError, LocationParseError)
b18fa3
 from .exceptions import (
b18fa3
     HTTPError, MissingSchema, InvalidURL, ChunkedEncodingError,
b18fa3
diff --git a/requests/sessions.py b/requests/sessions.py
b18fa3
index 9a51f33..22bd226 100644
b18fa3
--- a/requests/sessions.py
b18fa3
+++ b/requests/sessions.py
b18fa3
@@ -21,7 +21,7 @@ from .hooks import default_hooks, dispatch_hook
b18fa3
 from .utils import to_key_val_list, default_headers, to_native_string, DEFAULT_PORTS
b18fa3
 from .exceptions import (
b18fa3
     TooManyRedirects, InvalidSchema, ChunkedEncodingError, ContentDecodingError)
b18fa3
-from .packages.urllib3._collections import RecentlyUsedContainer
b18fa3
+from urllib3._collections import RecentlyUsedContainer
b18fa3
 from .structures import CaseInsensitiveDict
b18fa3
 
b18fa3
 from .adapters import HTTPAdapter
b18fa3
diff --git a/test_requests.py b/test_requests.py
b18fa3
index cf7c722..690b3ed 100755
b18fa3
--- a/test_requests.py
b18fa3
+++ b/test_requests.py
b18fa3
@@ -1655,7 +1655,7 @@ def test_prepare_unicode_url():
b18fa3
 
b18fa3
 
b18fa3
 def test_urllib3_retries():
b18fa3
-    from requests.packages.urllib3.util import Retry
b18fa3
+    from urllib3.util import Retry
b18fa3
     s = requests.Session()
b18fa3
     s.mount('http://', HTTPAdapter(max_retries=Retry(
b18fa3
         total=2, status_forcelist=[500]