[Python-checkins] r50961 - python/trunk/Lib/httplib.py

andrew.kuchling python-checkins at python.org
Sun Jul 30 02:27:35 CEST 2006


Author: andrew.kuchling
Date: Sun Jul 30 02:27:34 2006
New Revision: 50961

Modified:
   python/trunk/Lib/httplib.py
Log:
Minor typo fixes

Modified: python/trunk/Lib/httplib.py
==============================================================================
--- python/trunk/Lib/httplib.py	(original)
+++ python/trunk/Lib/httplib.py	Sun Jul 30 02:27:34 2006
@@ -3,7 +3,7 @@
 <intro stuff goes here>
 <other stuff, too>
 
-HTTPConnection go through a number of "states", which defines when a client
+HTTPConnection goes through a number of "states", which define when a client
 may legally make another request or fetch the response for a particular
 request. This diagram details these state transitions:
 
@@ -934,7 +934,7 @@
 
         return response
 
-# The next several classes are used to define FakeSocket,a socket-like
+# The next several classes are used to define FakeSocket, a socket-like
 # interface to an SSL connection.
 
 # The primary complexity comes from faking a makefile() method.  The


More information about the Python-checkins mailing list