[Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex,1.43,1.44

Tim Peters tim_one@users.sourceforge.net
Sat, 18 Aug 2001 18:38:05 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv21720/python/dist/src/doc/lib

Modified Files:
	libtime.tex 
Log Message:
Improve Windows time.clock() blurb; was missing return type and unit.


Index: libtime.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtime.tex,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** libtime.tex	2001/08/05 15:43:04	1.43
--- libtime.tex	2001/08/19 01:38:03	1.44
***************
*** 135,142 ****
  timing algorithms.
  
! On Windows, this function returns the nearest approximation to
! wall-clock time since the first call to this function, based on the
! Win32 function \cfunction{QueryPerformanceCounter()}.  The resolution
! is typically better than one microsecond.
  \end{funcdesc}
  
--- 135,142 ----
  timing algorithms.
  
! On Windows, this function returns wall-clock seconds elapsed since the
! first call to this function, as a floating point number,
! based on the Win32 function \cfunction{QueryPerformanceCounter()}.
! The resolution is typically better than one microsecond.
  \end{funcdesc}