mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
This refactoring includes some PEP-8 compliance changes, as well as some more complete testing to ensure that we're in fact serving everything out of cassettes when we thing we are. Incidentally, it also includes fixes for #3 and #4
9 lines
245 B
Python
9 lines
245 B
Python
'''Stubs for urllib3'''
|
|
|
|
from urllib3.connectionpool import VerifiedHTTPSConnection
|
|
from ..stubs import VCRHTTPSConnection
|
|
|
|
|
|
class VCRVerifiedHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection):
|
|
_baseclass = VerifiedHTTPSConnection
|