blob: f3d993322d67b32899cdc48fd2a92c9c95fee430 (
plain)
1
2
3
4
5
6
7
|
Date computations with months.
monthdelta.py includes a class, MonthDelta, and a function, monthmod().
MonthDelta enables easy month-related calculations with the standard Python date and datetime classes from the datetime module.
monthmod() enables round-trip calculations among MonthDelta, date, datetime, and timedelta.
|