[Python-checkins] python/nondist/sandbox/datetime datetime.c,1.42,1.43
tim_one@users.sourceforge.net
tim_one@users.sourceforge.net
2002年12月05日 18:55:35 -0800
Update of /cvsroot/python/python/nondist/sandbox/datetime
In directory sc8-pr-cvs1:/tmp/cvs-serv28541
Modified Files:
datetime.c
Log Message:
Repaired typos in comments.
Index: datetime.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/datetime.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** datetime.c 5 Dec 2002 05:04:09 -0000 1.42
--- datetime.c 6 Dec 2002 02:55:32 -0000 1.43
***************
*** 149,153 ****
}
! /* month, year -> number of days in that month in that year */
static int
days_in_month(int year, int month)
--- 149,153 ----
}
! /* year, month -> number of days in that month in that year */
static int
days_in_month(int year, int month)
***************
*** 161,165 ****
}
! /* month, year -> number of days in year preceeding first day of month */
static int
days_before_month(int year, int month)
--- 161,165 ----
}
! /* year, month -> number of days in year preceeding first day of month */
static int
days_before_month(int year, int month)