diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-07-30 00:27:34 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-07-30 00:27:34 (GMT) |
commit | ca2e79000b869861540015468e1b4873241ec984 (patch) | |
tree | e195de9229faf38f5ff785aa9908ec455c2c27e2 /Lib/httplib.py | |
parent | d457a97bebd8830695f1042c13a37122e93b8ef4 (diff) | |
download | cpython-ca2e79000b869861540015468e1b4873241ec984.zip cpython-ca2e79000b869861540015468e1b4873241ec984.tar.gz cpython-ca2e79000b869861540015468e1b4873241ec984.tar.bz2 |
Minor typo fixes
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r-- | Lib/httplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 95456ea..5ae5efc 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -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 @@ class HTTPConnection: 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 |