Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/cachecontrol/compat.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
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 requests.packages.urllib3.response import HTTPResponse | |
17 except ImportError: | |
18 from urllib3.response import HTTPResponse | |
19 | |
20 try: | |
21 from requests.packages.urllib3.util import is_fp_closed | |
22 except ImportError: | |
23 from 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,) |