[pywin32-bugs] [ pywin32-Bugs-3521185 ] win32timezone errors in dst/pst
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: SourceForge.net <no...@so...> - 2012-04-24 23:54:35
|
Bugs item #3521185, was opened at 2012-04-24 16:54 Message generated for change (Tracker Item Submitted) made by bmatthews27 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3521185&group_id=78018 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: win32timezone Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Brian Matthews (bmatthews27) Assigned to: Jason R. Coombs (jaraco) Summary: win32timezone errors in dst/pst Initial Comment: getWinInfo in timeZoneInfo class is return incorrect dynamic info return self.dynamicInfo.get(targetYear, self.dynamicInfo[RangeItemLast()]) self.dynamicInfo is a dictionary, not a List it should be something like: keys = self.dynamicInfo.keys().sort() return self.dynamicInfo.get(targetYear, self.dynamicInfo[keys[RangeItemLast()]]) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3521185&group_id=78018 |