From bd3ceb45139b3541b9cd9b148e7aa673b81f3683 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 7 Jun 2014 22:20:10 +0300 Subject: [PATCH] http.client: Comment out io.RawIOBase, as uPy lacks complete io hierarchy. --- http.client/http/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http.client/http/client.py b/http.client/http/client.py index e8eace6d..98f883c1 100644 --- a/http.client/http/client.py +++ b/http.client/http/client.py @@ -273,7 +273,8 @@ def parse_headers(fp, _class=HTTPMessage): _strict_sentinel = object() -class HTTPResponse(io.RawIOBase): +class HTTPResponse: +#class HTTPResponse(io.RawIOBase): # See RFC 2616 sec 19.6 and RFC 1945 sec 6 for details.