Lines Matching full:six
23 import six.moves.urllib.request
24 import six.moves.urllib.error
25 import six.moves.urllib.parse
26 from six.moves import map
27 from six.moves import zip
28 from six.moves import input
29 if six.PY2:
158 pkg_json = six.moves.urllib.request.urlopen(self.metadata_url).read().decode()
159 except six.moves.urllib.error.HTTPError as error:
166 except six.moves.urllib.error.URLError:
193 urlpath = six.moves.urllib.parse.urlparse(
205 download = six.moves.urllib.request.urlopen(download_url['url'])
206 except six.moves.urllib.error.HTTPError as http_error:
221 elif download.__class__ == six.moves.urllib.error.HTTPError:
250 if six.PY2:
664 except (six.moves.urllib.error.URLError, six.moves.urllib.error.HTTPError):
674 except six.moves.urllib.error.HTTPError as error: