diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2019-08-20 00:22:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-20 00:22:32 -0400 |
| commit | bbc3d43522bcb1363050557655508d66bfebcfcf (patch) | |
| tree | 6cafb254f3c9c08a3739021a2fc0f5bac8cbb604 /requests/utils.py | |
| parent | 8086ffdbbfc1e1f80c358ae9047c97c37b6b47bb (diff) | |
| parent | 2aab9a9a39fdfdfbd37cc8494259cb0ebb36a5e9 (diff) | |
| download | python-requests-bbc3d43522bcb1363050557655508d66bfebcfcf.tar.gz | |
Merge pull request #4922 from jdufresne/ordered
Remove unnecessary compat shim for OrderedDict
Diffstat (limited to 'requests/utils.py')
| -rw-r--r-- | requests/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/requests/utils.py b/requests/utils.py index 28c9366e..5636480d 100644 --- a/requests/utils.py +++ b/requests/utils.py @@ -19,6 +19,7 @@ import sys import tempfile import warnings import zipfile +from collections import OrderedDict from .__version__ import __version__ from . import certs @@ -26,7 +27,7 @@ from . import certs from ._internal_utils import to_native_string from .compat import parse_http_list as _parse_list_header from .compat import ( - quote, urlparse, bytes, str, OrderedDict, unquote, getproxies, + quote, urlparse, bytes, str, unquote, getproxies, proxy_bypass, urlunparse, basestring, integer_types, is_py3, proxy_bypass_environment, getproxies_environment, Mapping) from .cookies import cookiejar_from_dict |
