Documentation
The datetime module documentation states the following regarding the date arithmetic:
date2 = date1 + timedelta : date2 is timedelta.days days removed from date1. (1)
it should actually be stating:
date2 = date1 + timedelta : date1 is timedelta.days days removed from date2. (1)