mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
* Add support for PyYaml5.1 * Unpin requests in Tox * Unpin urllib3 in Tox * Unpin Flask in Tox * Add env vars to Tox for boto3 tests
26 lines
986 B
Python
26 lines
986 B
Python
"""Stubs for boto3"""
|
|
|
|
try:
|
|
# boto using awsrequest
|
|
from botocore.awsrequest import AWSHTTPConnection as HTTPConnection
|
|
from botocore.awsrequest import AWSHTTPSConnection as VerifiedHTTPSConnection
|
|
|
|
except ImportError: # pragma: nocover
|
|
# boto using vendored requests
|
|
# urllib3 defines its own HTTPConnection classes, which boto3 goes ahead and assumes
|
|
# you're using. It includes some polyfills for newer features missing in older pythons.
|
|
try:
|
|
from urllib3.connectionpool import HTTPConnection, VerifiedHTTPSConnection
|
|
except ImportError: # pragma: nocover
|
|
from requests.packages.urllib3.connectionpool import HTTPConnection, VerifiedHTTPSConnection
|
|
|
|
from ..stubs import VCRHTTPConnection, VCRHTTPSConnection
|
|
|
|
|
|
class VCRRequestsHTTPConnection(VCRHTTPConnection, HTTPConnection):
|
|
_baseclass = HTTPConnection
|
|
|
|
|
|
class VCRRequestsHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection):
|
|
_baseclass = VerifiedHTTPSConnection
|