examples/http_client: Use read() instead of readall().

This commit is contained in:
Paul Sokolovsky 2016-11-14 00:24:45 +03:00
parent 59a1201da9
commit 00a9590e3a
1 changed files with 1 additions and 1 deletions

View File

@ -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))