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

Merge pull request #713 from mghantous/mg/read1

VCRHTTPResponse Not Working with Biopython 1.81
This commit is contained in:
Sebastian Pipping
2023-06-12 13:08:00 +02:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -93,6 +93,9 @@ class VCRHTTPResponse(HTTPResponse):
def read(self, *args, **kwargs):
return self._content.read(*args, **kwargs)
def read1(self, *args, **kwargs):
return self._content.read1(*args, **kwargs)
def readall(self):
return self._content.readall()