Commit a7cff023 authored by Jeremy Hylton's avatar Jeremy Hylton

An HTTPResponse is, by its nature, readable.

parent 6af6d264
......@@ -469,6 +469,9 @@ class HTTPResponse(io.RawIOBase):
def flush(self):
self.fp.flush()
def readable(self):
return True
# End of "raw stream" methods
def isclosed(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment