[Python-checkins] python/dist/src/Misc NEWS,1.704,1.705

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Sat, 29 Mar 2003 20:54:26 -0800


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

Modified Files:
	NEWS 
Log Message:
The socket module now always uses the _socketobject wrapper class, even on
platforms which have dup(2).  The makefile() method is built directly on top
of the socket without duplicating the file descriptor, allowing timeouts to
work properly.  Includes a new test case (urllibnet) which requires the
network resource.

Closes bug 707074.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.704
retrieving revision 1.705
diff -C2 -d -r1.704 -r1.705
*** NEWS	29 Mar 2003 10:06:18 -0000	1.704
--- NEWS	30 Mar 2003 04:54:24 -0000	1.705
***************
*** 60,63 ****
--- 60,68 ----
    Added chain() and cycle().
  
+ - The socket module now always uses the _socketobject wrapper class, even on
+   platforms which have dup(2).  The makefile() method is built directly
+   on top of the socket without duplicating the file descriptor, allowing
+   timeouts to work properly.
+ 
  Library
  -------