This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author errx
Recipients errx
Date 2014-10-28.14:26:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414506398.58.0.3585243804.issue22752@psf.upfronthosting.co.za>
In-reply-to
Content
There was timezone change in Russia at 26 october (http://www.timeanddate.com/time/change/russia/moscow)

But code in timemodule.c using first day of the year to get timezone
 
        t = (time((time_t *)0) / YEAR) * YEAR;
        p = localtime(&t);
        janzone = -p->tm_gmtoff;

so janzone have incorrect value (with old timezone)
History
Date User Action Args
2014-10-28 14:26:38errxsetrecipients: + errx
2014-10-28 14:26:38errxsetmessageid: <1414506398.58.0.3585243804.issue22752@psf.upfronthosting.co.za>
2014-10-28 14:26:38errxlinkissue22752 messages
2014-10-28 14:26:38errxcreate