[Python-checkins] python/dist/src/Misc NEWS,1.774,1.775

niemeyer@users.sourceforge.net niemeyer@users.sourceforge.net
Sat, 07 Jun 2003 10:53:11 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv16400/Misc

Modified Files:
	NEWS 
Log Message:
- 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.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.774
retrieving revision 1.775
diff -C2 -d -r1.774 -r1.775
*** NEWS	25 May 2003 17:44:31 -0000	1.774
--- NEWS	7 Jun 2003 17:53:08 -0000	1.775
***************
*** 81,84 ****
--- 81,89 ----
  - 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
  -----------