Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

'''Stubs for requests''' 

 

from requests.packages.urllib3.connectionpool import HTTPConnection, VerifiedHTTPSConnection 

from ..stubs import VCRHTTPConnection, VCRHTTPSConnection 

 

# urllib3 defines its own HTTPConnection classes, which requests goes ahead and assumes 

# you're using.  It includes some polyfills for newer features missing in older pythons. 

 

class VCRRequestsHTTPConnection(VCRHTTPConnection, HTTPConnection): 

    _baseclass = HTTPConnection 

 

class VCRRequestsHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection): 

    _baseclass = VerifiedHTTPSConnection