[Python-checkins] r74523 - python/trunk/Lib/httplib.py
gregory.p.smith
python-checkins at python.org
Thu Aug 20 11:38:44 CEST 2009
Author: gregory.p.smith
Date: Thu Aug 20 11:38:43 2009
New Revision: 74523
Log:
comment typo fix
Modified:
python/trunk/Lib/httplib.py
Modified: python/trunk/Lib/httplib.py
==============================================================================
--- python/trunk/Lib/httplib.py (original)
+++ python/trunk/Lib/httplib.py Thu Aug 20 11:38:43 2009
@@ -328,7 +328,7 @@
def __init__(self, sock, debuglevel=0, strict=0, method=None, buffering=False):
if 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')
else:
# The buffer size is specified as zero, because the headers of
More information about the Python-checkins
mailing list