Commit 77db0165 authored by Gregory P. Smith's avatar Gregory P. Smith

comment typo fix

parent e2ae86a1
...@@ -328,7 +328,7 @@ class HTTPResponse: ...@@ -328,7 +328,7 @@ class HTTPResponse:
def __init__(self, sock, debuglevel=0, strict=0, method=None, buffering=False): def __init__(self, sock, debuglevel=0, strict=0, method=None, buffering=False):
if buffering: if buffering:
# The caller won't be using any sock.recv() calls, so buffering # The caller won't be using any sock.recv() calls, so buffering
# is fine and recommendef for performance # is fine and recommended for performance.
self.fp = sock.makefile('rb') self.fp = sock.makefile('rb')
else: else:
# The buffer size is specified as zero, because the headers of # The buffer size is specified as zero, because the headers of
......
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