You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: