[Python-checkins] python/dist/src/Misc NEWS,1.481,1.482

loewis@users.sourceforge.net loewis@users.sourceforge.net
Mon, 09 Sep 2002 07:24:18 -0700


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

Modified Files:
	NEWS 
Log Message:
Patch #606592: Subsecond timestamps in stat_result.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.481
retrieving revision 1.482
diff -C2 -d -r1.481 -r1.482
*** NEWS	6 Sep 2002 16:15:58 -0000	1.481
--- NEWS	9 Sep 2002 14:24:16 -0000	1.482
***************
*** 275,278 ****
--- 275,281 ----
  Extension modules
  
+ - The time stamps in os.stat_result are floating point numbers now if
+   the system supports that.
+ 
  - If the size passed to mmap.mmap() is larger than the length of the
    file on non-Windows platforms, a ValueError is raised. [SF bug 585792]