X7ROOT File Manager
Current Path:
/lib/python2.7/site-packages/pip/_vendor/requests
lib
/
python2.7
/
site-packages
/
pip
/
_vendor
/
requests
/
??
..
??
__init__.py
(3.49 KB)
??
__init__.pyc
(3.77 KB)
??
__init__.pyo
(3.6 KB)
??
__version__.py
(436 B)
??
__version__.pyc
(587 B)
??
__version__.pyo
(587 B)
??
_internal_utils.py
(1.07 KB)
??
_internal_utils.pyc
(1.5 KB)
??
_internal_utils.pyo
(1.45 KB)
??
adapters.py
(20.52 KB)
??
adapters.pyc
(18.53 KB)
??
adapters.pyo
(18.53 KB)
??
api.py
(6.09 KB)
??
api.pyc
(6.89 KB)
??
api.pyo
(6.89 KB)
??
auth.py
(9.5 KB)
??
auth.pyc
(9.69 KB)
??
auth.pyo
(9.69 KB)
??
certs.py
(465 B)
??
certs.pyc
(618 B)
??
certs.pyo
(618 B)
??
compat.py
(1.59 KB)
??
compat.pyc
(1.8 KB)
??
compat.pyo
(1.8 KB)
??
cookies.py
(17.78 KB)
??
cookies.pyc
(21.88 KB)
??
cookies.pyo
(21.88 KB)
??
exceptions.py
(3.04 KB)
??
exceptions.pyc
(6.76 KB)
??
exceptions.pyo
(6.76 KB)
??
help.py
(3.58 KB)
??
help.pyc
(3.32 KB)
??
help.pyo
(3.32 KB)
??
hooks.py
(767 B)
??
hooks.pyc
(1.21 KB)
??
hooks.pyo
(1.21 KB)
??
models.py
(33.25 KB)
??
models.pyc
(28.52 KB)
??
models.pyo
(28.52 KB)
??
packages.py
(695 B)
??
packages.pyc
(578 B)
??
packages.pyo
(578 B)
??
sessions.py
(28.02 KB)
??
sessions.pyc
(21.85 KB)
??
sessions.pyo
(21.85 KB)
??
status_codes.py
(3.25 KB)
??
status_codes.pyc
(4.52 KB)
??
status_codes.pyo
(4.52 KB)
??
structures.py
(2.94 KB)
??
structures.pyc
(5.29 KB)
??
structures.pyo
(5.29 KB)
??
utils.py
(27.05 KB)
??
utils.pyc
(25.04 KB)
??
utils.pyo
(25.04 KB)
Editing: exceptions.py
# -*- coding: utf-8 -*- """ requests.exceptions ~~~~~~~~~~~~~~~~~~~ This module contains the set of Requests' exceptions. """ from pip._vendor.urllib3.exceptions import HTTPError as BaseHTTPError class RequestException(IOError): """There was an ambiguous exception that occurred while handling your request. """ def __init__(self, *args, **kwargs): """Initialize RequestException with `request` and `response` objects.""" response = kwargs.pop('response', None) self.response = response self.request = kwargs.pop('request', None) if (response is not None and not self.request and hasattr(response, 'request')): self.request = self.response.request super(RequestException, self).__init__(*args, **kwargs) class HTTPError(RequestException): """An HTTP error occurred.""" class ConnectionError(RequestException): """A Connection error occurred.""" class ProxyError(ConnectionError): """A proxy error occurred.""" class SSLError(ConnectionError): """An SSL error occurred.""" class Timeout(RequestException): """The request timed out. Catching this error will catch both :exc:`~requests.exceptions.ConnectTimeout` and :exc:`~requests.exceptions.ReadTimeout` errors. """ class ConnectTimeout(ConnectionError, Timeout): """The request timed out while trying to connect to the remote server. Requests that produced this error are safe to retry. """ class ReadTimeout(Timeout): """The server did not send any data in the allotted amount of time.""" class URLRequired(RequestException): """A valid URL is required to make a request.""" class TooManyRedirects(RequestException): """Too many redirects.""" class MissingSchema(RequestException, ValueError): """The URL schema (e.g. http or https) is missing.""" class InvalidSchema(RequestException, ValueError): """See defaults.py for valid schemas.""" class InvalidURL(RequestException, ValueError): """The URL provided was somehow invalid.""" class InvalidHeader(RequestException, ValueError): """The header value provided was somehow invalid.""" class ChunkedEncodingError(RequestException): """The server declared chunked encoding but sent an invalid chunk.""" class ContentDecodingError(RequestException, BaseHTTPError): """Failed to decode response content""" class StreamConsumedError(RequestException, TypeError): """The content for this response was already consumed""" class RetryError(RequestException): """Custom retries logic failed""" class UnrewindableBodyError(RequestException): """Requests encountered an error when trying to rewind a body""" # Warnings class RequestsWarning(Warning): """Base warning for Requests.""" pass class FileModeWarning(RequestsWarning, DeprecationWarning): """A file was opened in text mode, but Requests determined its binary length.""" pass class RequestsDependencyWarning(RequestsWarning): """An imported dependency doesn't match the expected version range.""" pass
Upload File
Create Folder