diff options
author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2003-06-07 17:53:08 (GMT) |
---|---|---|
committer | Gustavo Niemeyer <gustavo@niemeyer.net> | 2003-06-07 17:53:08 (GMT) |
commit | 9556fba68528e46873bf59c4e4642525adfd388b (patch) | |
tree | ffc5e07aec5a1e0e0884f0a37d995253850ea804 /Misc | |
parent | ef58adf8d6828475a95b36b390d6b788e0894c99 (diff) | |
download | cpython-9556fba68528e46873bf59c4e4642525adfd388b.zip cpython-9556fba68528e46873bf59c4e4642525adfd388b.tar.gz cpython-9556fba68528e46873bf59c4e4642525adfd388b.tar.bz2 |
- urllib2.py now knows 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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -80,6 +80,11 @@ Library - timeit.py now checks the current directory for imports. +- urllib2.py now knows 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. + Tools/Demos ----------- |