1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Merge pull request #63 from msabramo/issue_59_save_requests_HTTPSConnection

patch: Save requests...HTTPSConnection
This commit is contained in:
Kevin McCarthy
2014-02-04 10:49:28 -08:00

View File

@@ -13,6 +13,7 @@ try:
import requests.packages.urllib3.connectionpool as cpool
_VerifiedHTTPSConnection = cpool.VerifiedHTTPSConnection
_HTTPConnection = cpool.HTTPConnection
_HTTPSConnection = cpool.HTTPSConnection
except ImportError: # pragma: no cover
pass