File tree Expand file tree Collapse file tree 7 files changed +7
-1
lines changed
src/snowflake/connector/vendored/requests Expand file tree Collapse file tree 7 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 66# - This script assumes that ../dist/repaired_wheels has the wheel(s) built for all versions to be tested
77# - This is the script that test_docker.sh runs inside of the docker container
88
9+
910PYTHON_VERSIONS=" ${1:- 3.9 3.10 3.11 3.12 3.13} "
1011THIS_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
1112CONNECTOR_DIR=" $( dirname " ${THIS_DIR} " ) "
Original file line number Diff line number Diff line change 4141import warnings
4242
4343from .. import urllib3
44+
4445from .exceptions import RequestsDependencyWarning
4546
4647try :
Original file line number Diff line number Diff line change 2727from ..urllib3 .util import Timeout as TimeoutSauce
2828from ..urllib3 .util import parse_url
2929from ..urllib3 .util .retry import Retry
30+
3031from .auth import _basic_auth_str
3132from .compat import basestring , urlparse
3233from .cookies import extract_cookies_to_jar
Original file line number Diff line number Diff line change 55This module contains the set of Requests' exceptions.
66"""
77from ..urllib3 .exceptions import HTTPError as BaseHTTPError
8+
89from .compat import JSONDecodeError as CompatJSONDecodeError
910
1011
Original file line number Diff line number Diff line change 66import sys
77
88import idna
9-
109from .. import urllib3
10+
1111from . import __version__ as requests_version
1212
1313try :
Original file line number Diff line number Diff line change 2323from ..urllib3 .fields import RequestField
2424from ..urllib3 .filepost import encode_multipart_formdata
2525from ..urllib3 .util import parse_url
26+
2627from ._internal_utils import to_native_string , unicode_is_ascii
2728from .auth import HTTPBasicAuth
2829from .compat import (
Original file line number Diff line number Diff line change 2020from collections import OrderedDict
2121
2222from ..urllib3 .util import make_headers , parse_url
23+
2324from . import certs
2425from .__version__ import __version__
2526
You can’t perform that action at this time.
0 commit comments