Message 97272 - Python tracker
Message97272
| Author | srumbalski |
|---|---|
| Recipients | amaury.forgeotdarc, brian.curtin, srumbalski, techtonik |
| Date | 2010-01-05.19:17:25 |
| SpamBayes Score | 0.04275834 |
| Marked as misclassified | No |
| Message-id | <1262719046.96.0.761403540449.issue7582@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
I think this is incorrect during daylight savings time: tzoffset = -time.timezone // 60 This should do it: isdst = time.localtime().tm_isdst tzoffset = -(time.altzone if isdst else time.timezone)//60 |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2010-01-05 19:17:27 | srumbalski | set | recipients: + srumbalski, amaury.forgeotdarc, techtonik, brian.curtin |
| 2010-01-05 19:17:26 | srumbalski | set | messageid: <1262719046.96.0.761403540449.issue7582@psf.upfronthosting.co.za> |
| 2010-01-05 19:17:25 | srumbalski | link | issue7582 messages |
| 2010-01-05 19:17:25 | srumbalski | create | |