examples/http_client: Use read() instead of readall().
This commit is contained in:
parent
59a1201da9
commit
00a9590e3a
|
@ -19,7 +19,7 @@ def main(use_stream=False):
|
|||
# directly, but the line below is needed for CPython.
|
||||
s = s.makefile("rwb", 0)
|
||||
s.write(b"GET / HTTP/1.0\r\n\r\n")
|
||||
print(s.readall())
|
||||
print(s.read())
|
||||
else:
|
||||
s.send(b"GET / HTTP/1.0\r\n\r\n")
|
||||
print(s.recv(4096))
|
||||
|
|
Loading…
Reference in New Issue