I have to do datetime arithmetics in working days/timespans. I've seen wxDateTimeHolidayAuthority in wxwidgets manual but it doesn't seem to be included in wxpython. Will it be in the future? Can you suggest me other solutions or libraries that I could use?
On Mon, 13 Sep 2004 00:44:00 +0200, m.prosperi@libero.it <m.prosperi@libero.it> wrote:
hello,
I have to do datetime arithmetics in working days/timespans. I've seen wxDateTimeHolidayAuthority in wxwidgets manual but it doesn't seem to be included in wxpython. Will it be in the future? Can you suggest me other solutions or libraries that I could use?
I have to do datetime arithmetics in working days/timespans. I've seen wxDateTimeHolidayAuthority in wxwidgets manual but it doesn't seem to be included in wxpython. Will it be in the future? Can you suggest me other solutions or libraries that I could use?
wx.DateTime has some operators defined for it, but Python's datetime
module is probably better and more intuitive.
In that case, perhaps it's time to take it out of wxPython? Wanna keep
it mean and lean.
Or make them wrappers to the proper functions, to preserve old code.
But, then there's one problem: which module to use? mx.DateTime (not a
standard module) or Python's datetime (not available in older Python
versions...)?
The wrappers could try Python's first and then mx's later...