This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Ordering of handlers in urllib2
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: niemeyer Nosy List: niemeyer
Priority: normal Keywords: patch

Created on 2003-05-24 18:47 by niemeyer, last changed 2022-04-10 16:08 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
urllib2.patch niemeyer, 2003-05-24 18:47 Version 1
Messages (2)
msg43846 - (view) Author: Gustavo Niemeyer (niemeyer) * (Python committer) Date: 2003-05-24 18:47
With this patch urllib2.py will know how to order proxy
classes, so the user doesn't 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. It is also interesting
enough to let the users easily create their own
specially ordered handlers.
msg43847 - (view) Author: Gustavo Niemeyer (niemeyer) * (Python committer) Date: 2003-06-07 17:55
Logged In: YES 
user_id=7887

Applied as:

Doc/lib/liburllib2.tex: 1.10
Lib/urllib2.py: 1.48
Misc/NEWS: 1.775
History
Date User Action Args
2022-04-10 16:08:53adminsetgithub: 38545
2003-05-24 18:47:12niemeyercreate