cpython/Lib/http
Jeremy Hylton 6c5e28c383 Simplify the Request class. The basic components of the parsed
Request are now available as public attributes, e.g. full_url and
host.  The accessor methods are deprecated.  The implementation
replace the complicated __getattr__ machinery with a _parse() method.

The response from an HTTP request is now an HTTPResponse instance
instead of an addinfourl() wrapper instance.  The wrapper provided
minimal extract functionality and was undocumented.  The API of
addinfourl() was preserved, except for close hooks, by adding a few
methods and public attributes to the HTTPResponse class.
2009-03-31 14:35:53 +00:00
..
__init__.py Create http package. #2883. 2008-05-26 16:32:26 +00:00
client.py Simplify the Request class. The basic components of the parsed 2009-03-31 14:35:53 +00:00
cookiejar.py #2834: Change re module semantics, so that str and bytes mixing is forbidden, 2008-08-19 17:56:33 +00:00
cookies.py Merged revisions 66262 via svnmerge from 2008-09-06 19:37:35 +00:00
server.py Fix compatibility issue with HTTPMessage class. 2009-03-27 18:31:36 +00:00