Lines 1-17
Link Here
|
1 |
--- requests/models.py.orig 2012-03-09 17:51:20.000000000 +0100 |
1 |
--- requests/models.py.orig 2012-04-23 04:13:53.000000000 +0200 |
2 |
+++ requests/models.py 2012-03-19 17:49:25.000000000 +0100 |
2 |
+++ requests/models.py 2012-04-23 18:22:55.000000000 +0200 |
3 |
@@ -15,12 +15,12 @@ |
3 |
@@ -15,12 +15,12 @@ |
4 |
from .status_codes import codes |
4 |
from .status_codes import codes |
5 |
|
5 |
|
6 |
from .auth import HTTPBasicAuth, HTTPProxyAuth |
6 |
from .auth import HTTPBasicAuth, HTTPProxyAuth |
7 |
-from .packages.urllib3.response import HTTPResponse |
7 |
-from .packages.urllib3.response import HTTPResponse |
8 |
-from .packages.urllib3.exceptions import MaxRetryError |
8 |
-from .packages.urllib3.exceptions import MaxRetryError, LocationParseError |
9 |
-from .packages.urllib3.exceptions import SSLError as _SSLError |
9 |
-from .packages.urllib3.exceptions import SSLError as _SSLError |
10 |
-from .packages.urllib3.exceptions import HTTPError as _HTTPError |
10 |
-from .packages.urllib3.exceptions import HTTPError as _HTTPError |
11 |
-from .packages.urllib3 import connectionpool, poolmanager |
11 |
-from .packages.urllib3 import connectionpool, poolmanager |
12 |
-from .packages.urllib3.filepost import encode_multipart_formdata |
12 |
-from .packages.urllib3.filepost import encode_multipart_formdata |
13 |
+from urllib3.response import HTTPResponse |
13 |
+from urllib3.response import HTTPResponse |
14 |
+from urllib3.exceptions import MaxRetryError |
14 |
+from urllib3.exceptions import MaxRetryError, LocationParseError |
15 |
+from urllib3.exceptions import SSLError as _SSLError |
15 |
+from urllib3.exceptions import SSLError as _SSLError |
16 |
+from urllib3.exceptions import HTTPError as _HTTPError |
16 |
+from urllib3.exceptions import HTTPError as _HTTPError |
17 |
+from urllib3 import connectionpool, poolmanager |
17 |
+from urllib3 import connectionpool, poolmanager |