Mercurial > repos > guerler > hhblits
comparison lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py @ 0:9e54283cc701 draft
"planemo upload commit d12c32a45bcd441307e632fca6d9af7d60289d44"
author | guerler |
---|---|
date | Mon, 27 Jul 2020 03:47:31 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9e54283cc701 |
---|---|
1 try: | |
2 from urllib.parse import urljoin | |
3 except ImportError: | |
4 from urlparse import urljoin | |
5 | |
6 | |
7 try: | |
8 import cPickle as pickle | |
9 except ImportError: | |
10 import pickle | |
11 | |
12 | |
13 # Handle the case where the requests module has been patched to not have | |
14 # urllib3 bundled as part of its source. | |
15 try: | |
16 from pip._vendor.requests.packages.urllib3.response import HTTPResponse | |
17 except ImportError: | |
18 from pip._vendor.urllib3.response import HTTPResponse | |
19 | |
20 try: | |
21 from pip._vendor.requests.packages.urllib3.util import is_fp_closed | |
22 except ImportError: | |
23 from pip._vendor.urllib3.util import is_fp_closed | |
24 | |
25 # Replicate some six behaviour | |
26 try: | |
27 text_type = unicode | |
28 except NameError: | |
29 text_type = str |