mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 17:45:35 +00:00
Add read1 method to VCRHTTPResponse
This commit is contained in:
@@ -93,6 +93,9 @@ class VCRHTTPResponse(HTTPResponse):
|
|||||||
def read(self, *args, **kwargs):
|
def read(self, *args, **kwargs):
|
||||||
return self._content.read(*args, **kwargs)
|
return self._content.read(*args, **kwargs)
|
||||||
|
|
||||||
|
def read1(self, *args, **kwargs):
|
||||||
|
return self._content.read1(*args, **kwargs)
|
||||||
|
|
||||||
def readall(self):
|
def readall(self):
|
||||||
return self._content.readall()
|
return self._content.readall()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user