[Python-checkins] CVS: python/nondist/sandbox/datetime datetime.py,1.19,1.20

Tim Peters tim_one@users.sourceforge.net
Sat, 02 Mar 2002 19:59:39 -0800


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

Modified Files:
	datetime.py 
Log Message:
Simplified a comment.


Index: datetime.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/datetime.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** datetime.py	3 Mar 2002 03:58:12 -0000	1.19
--- datetime.py	3 Mar 2002 03:59:37 -0000	1.20
***************
*** 18,23 ****
  # and Reingold's "Calendrical Calculations", where it's the base calendar
  # for all computations.  See the book for algorithms for converting between
! # day ordinals in the proleptic Gregorian calendar and many other calendar
! # systems.
  
  _DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
--- 18,22 ----
  # and Reingold's "Calendrical Calculations", where it's the base calendar
  # for all computations.  See the book for algorithms for converting between
! # proleptic Gregorian ordinals and many other calendar systems.
  
  _DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]