The calendar module defines constants e.g. MONDAY (0), TUESDAY (1), etc. for the days of the week.
And the source code even defines (but does not export) constants for January (1) and February (2), but not the rest of the months.
I can of course throw in a dozen of these definitions in a small module of my own. But given how common these must be, I'm left wondering:
Is there a standard python module defining constants for all of the months?
from some_module import APRIL, and then useAPRILinstead of 4 where needed e.g. to initialise adatetime.dateobject.