[Python-checkins] CVS: python/nondist/sandbox/datetime datetime.py,1.9,1.10

Guido van Rossum gvanrossum@users.sourceforge.net
Sat, 02 Mar 2002 05:59:34 -0800


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

Modified Files:
	datetime.py 
Log Message:
Add XXX comment about duplication with calendar.py.


Index: datetime.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/datetime.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** datetime.py	2 Mar 2002 01:03:08 -0000	1.9
--- datetime.py	2 Mar 2002 13:59:32 -0000	1.10
***************
*** 7,10 ****
--- 7,11 ----
  # also assumes the current Gregorian calendar indefinitely extended in
  # both directions.
+ # XXX Why not borrow from calendar.py?
  
  _DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]