summaryrefslogtreecommitdiffstats
path: root/Doc/lib/liburllib2.tex
Commit message (Collapse)AuthorAgeFilesLines
* Patch #963318: Add support for client-side cookie management.Martin v. Löwis2004-05-311-29/+132
|
* fix various typos; thanks, George Yoshida!Fred Drake2004-05-121-1/+1
| | | | (closes SF patch #952047)
* Use versionadded for new featuresNeal Norwitz2004-02-281-0/+4
|
* SF patch #892821: example for urllib2 has SyntaxErrorRaymond Hettinger2004-02-081-2/+1
| | | | (Contributed by George Yoshida.)
* SF patch 852995: add processors feature to urllib2Jeremy Hylton2003-12-141-1/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | John J. Lee writes: "the patch makes it possible to implement functionality like HTTP cookie handling, Refresh handling, etc. etc. using handler objects. At the moment urllib2's handler objects aren't quite up to the job, which results in a lot of cut-n-paste and subclassing. I believe the changes are backwards-compatible, with the exception of people who've reimplemented build_opener()'s functionality -- those people would need to call opener.add_handler(HTTPErrorProcessor). The main change is allowing handlers to implement methods like: http_request(request) http_response(request, response) In addition to the usual http_open(request) http_error{_*}(...) " Note that the change isn't well documented at least in part because handlers aren't well documented at all. Need to fix this. Add a bunch of new tests. It appears that none of these tests actually use the network, so they don't need to be guarded by a resource flag.
* Markup consistency nits.Fred Drake2003-07-141-15/+17
|
* Added missing markup.Fred Drake2003-07-141-0/+2
|
* Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2.Martin v. Löwis2003-07-121-3/+11
|
* - urllib2.py now knows how to order proxy classes, so the user doesn'tGustavo Niemeyer2003-06-071-0/+5
| | | | | | have to insert it in front of other classes, nor do dirty tricks like inserting a "dummy" HTTPHandler after a ProxyHandler when building an opener with proxy support.
* Missing parenthesis found by texcheck.pyRaymond Hettinger2003-05-101-1/+1
|
* Add modified versions of the examples from Sean ReifschneiderFred Drake2003-04-251-0/+36
| | | | (SF patch #545480).
* SF Patch 549151: urllib2 POSTs on redirectRaymond Hettinger2003-04-241-5/+35
| | | | (contributed by John J Lee)
* Fix a variety of typographical, grammatical, and clarity problems reportedFred Drake2001-11-091-54/+62
| | | | by Detlef Lannert.
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-2/+2
|
* Fix a markup error: do not omit a method's parameter list if it isFred Drake2001-07-051-1/+1
| | | | empty.
* Markup adjustments to avoid getting junk in the index.Fred Drake2001-05-111-5/+5
|
* Lots of organizational changes for consistency with the rest of theFred Drake2001-03-021-225/+289
| | | | | | documentation. Fix a few small markup nits.
* Checking in patch 404826 -- urllib2 enhancements and documentations.Moshe Zadka2001-03-011-0/+501
(please not that the library reference does *not* include the urllib2 documnetation -- that will wiat for Fred)