[Python-checkins] python/dist/src/Misc NEWS,1.692,1.693

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 08 Mar 2003 21:33:34 -0800


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

Modified Files:
	NEWS 
Log Message:
SF 698520:  Iterator for urllib.URLOpener
Contributed by Brett Cannon.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.692
retrieving revision 1.693
diff -C2 -d -r1.692 -r1.693
*** NEWS	7 Mar 2003 15:13:06 -0000	1.692
--- NEWS	9 Mar 2003 05:33:32 -0000	1.693
***************
*** 47,50 ****
--- 47,53 ----
  -------
  
+ - The urllib module now offers support for the iterator protocol.
+   SF patch 698520 contributed by Brett Cannon.
+ 
  - New module timeit provides a simple framework for timing the
    execution speed of expressions and statements.