[Python-checkins] python/dist/src/Misc NEWS,1.443,1.444

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Mon, 22 Jul 2002 20:32:13 -0700


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

Modified Files:
	NEWS 
Log Message:
Add news about strptime and socket.setdefaulttimeout().


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.443
retrieving revision 1.444
diff -C2 -d -r1.443 -r1.444
*** NEWS	22 Jul 2002 13:21:10 -0000	1.443
--- NEWS	23 Jul 2002 03:32:08 -0000	1.444
***************
*** 144,147 ****
--- 144,150 ----
  Extension modules
  
+ - The strptime function in the time module is now always available (a
+   Python implementation is used when the C library doesn't define it).
+ 
  - The 'new' module is no longer an extension, but a Python module that
    only exists for backwards compatibility.  Its contents are no longer
***************
*** 198,202 ****
    a float expressing seconds, subsequent operations raise an exception
    if they cannot be completed within T seconds.  To disable timeout
!   mode, use s.settimeout(None).
  
  - getopt.gnu_getopt was added.  This supports GNU-style option
--- 201,207 ----
    a float expressing seconds, subsequent operations raise an exception
    if they cannot be completed within T seconds.  To disable timeout
!   mode, use s.settimeout(None).  There's also a module function,
!   socket.setdefaulttimeout(T), which sets the default for all sockets
!   created henceforth.
  
  - getopt.gnu_getopt was added.  This supports GNU-style option