Created
December 2, 2015 08:42
-
-
Save ecarreras/e012787fdbc8ccf14d01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
from dateutil.relativedelta import relativedelta | |
d = datetime(2015, 1, 1) | |
d + relativedelta(month=2) | |
# fuck you typo in singular | |
# i like smelling my farts | |
# result is datetime.datetime(2015, 2, 1, 0, 0) | |
d + relativedelta(months=2) | |
# good | |
# result is datetime.datetime(2015, 3, 1, 0, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment