diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2017-05-26 22:49:43 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2017-05-26 22:49:43 -0400 |
| commit | 6ef7298466076eb9e196ff430f9f1d2ddad44012 (patch) | |
| tree | cb519491adcda70f639a470b8203b2ab515a4422 | |
| parent | 818daff12a8e2bfdabe620b08e0b252bd93d2c6a (diff) | |
| download | python-requests-6ef7298466076eb9e196ff430f9f1d2ddad44012.tar.gz | |
fix sessions.py
| -rwxr-xr-x | requests/sessions.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/requests/sessions.py b/requests/sessions.py index b21d2f26..9b74f5dd 100755 --- a/requests/sessions.py +++ b/requests/sessions.py @@ -13,6 +13,8 @@ import time from collections import Mapping from datetime import timedelta +from urllib3._collections import RecentlyUsedContainer + from .auth import _basic_auth_str from .compat import cookielib, is_py3, OrderedDict, urljoin, urlparse from .cookies import ( @@ -23,9 +25,8 @@ from ._internal_utils import to_native_string from .utils import to_key_val_list, default_headers from .exceptions import ( TooManyRedirects, InvalidSchema, ChunkedEncodingError, ContentDecodingError) -from .packages.urllib3._collections import RecentlyUsedContainer -from .structures import CaseInsensitiveDict +from .structures import CaseInsensitiveDict from .adapters import HTTPAdapter from .utils import ( |
