#18705: fix a number of typos. Patch by Févry Thibault.

This commit is contained in:
Ezio Melotti 2013-08-17 15:50:46 +03:00
parent 67f39777fa
commit 30b9d5d3af
25 changed files with 44 additions and 44 deletions

View file

@ -49,7 +49,7 @@ def _days_in_month(year, month):
return _DAYS_IN_MONTH[month]
def _days_before_month(year, month):
"year, month -> number of days in year preceeding first day of month."
"year, month -> number of days in year preceding first day of month."
assert 1 <= month <= 12, 'month must be in 1..12'
return _DAYS_BEFORE_MONTH[month] + (month > 2 and _is_leap(year))