]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Rewrite AbstractHTTPHandler to use modern httplib interface.
authorJeremy Hylton <jeremy@alum.mit.edu>
Wed, 17 Dec 2003 18:52:16 +0000 (18:52 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Wed, 17 Dec 2003 18:52:16 +0000 (18:52 +0000)
commit023518a6a810ac1a79d4b797854f49d7f1bddee3
tree56f75720984e3195051d6a14e3f41dd07b5c8c33
parenta7b673f47c9fe7f597bb56a1babb91943183283d
Rewrite AbstractHTTPHandler to use modern httplib interface.

The chief benefit of this change is that requests will now use
HTTP/1.1 instead of HTTP/1.0.  Bump the module version number as part
of the change.

There are two possible incompatibilities that we'll need to watch out
for when we get to an alpha release.  We may get a different class of
exceptions out of httplib, and the do_open() method changed its
signature.  The latter is only important if anyone actually subclasses
AbstractHTTPHandler.
Lib/urllib2.py