What is the cleanest and most Pythonic way to get tomorrow's date? There must be a better way than to add one to the day, handle days at the end of the month, etc.
|
|
|
|||
|
|
|
|
As asked in a comment, leap days pose no problem:
|
|||
|
|
No handling of leap seconds tho:
darn. EDIT - @Mark: The docs say "yes", but the code says "not so much":
I would think that gmtime or localtime would take the value returned by mktime and given me back the original tuple, with 60 as the number of seconds. And this test shows that these leap seconds can just fade away...
|
|||
|
|
|
Even the basic
|
||
|
|
