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

Make response.raw.stream() work for urllib3 v2

This commit is contained in:
Sebastian Pipping
2023-06-20 23:49:57 +02:00
parent 7eb235cd9c
commit 3411bedc06

View File

@@ -170,6 +170,13 @@ class VCRHTTPResponse(HTTPResponse):
def drain_conn(self):
pass
def stream(self, amt=65536, decode_content=None):
while True:
b = self._content.read(amt)
yield b
if not b:
break
class VCRConnection:
# A reference to the cassette that's currently being patched in