[Python-checkins] python/nondist/sandbox/datetime doc.txt,1.24,1.25

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sat, 07 Dec 2002 10:58:27 -0800


Update of /cvsroot/python/python/nondist/sandbox/datetime
In directory sc8-pr-cvs1:/tmp/cvs-serv30522

Modified Files:
	doc.txt 
Log Message:
Typo repair.


Index: doc.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/doc.txt,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** doc.txt	7 Dec 2002 18:34:39 -0000	1.24
--- doc.txt	7 Dec 2002 18:58:25 -0000	1.25
***************
*** 504,508 ****
  ==========
  A time object represents an idealized time of day, independent of day
! and timezone.  
  
  Constructor:
--- 504,508 ----
  ==========
  A time object represents an idealized time of day, independent of day
! and timezone.
  
  Constructor:
***************
*** 510,514 ****
      time(hour=0, minute=0, second=0, microsecond=0)
  
!     All arguments are optional.  The may be ints or longs, in the
      following ranges:
  
--- 510,514 ----
      time(hour=0, minute=0, second=0, microsecond=0)
  
!     All arguments are optional.  They may be ints or longs, in the
      following ranges:
  
***************
*** 527,534 ****
  
      .min
!         The earliest representable time, time(0, 0, 0).
  
      .max
!         The latest representable time, time(23, 59, 59).
  
      .resolution
--- 527,534 ----
  
      .min
!         The earliest representable time, time(0, 0, 0, 0).
  
      .max
!         The latest representable time, time(23, 59, 59, 999999).
  
      .resolution