Author srittau
Recipients amaury.forgeotdarc, belopolsky, brett.cannon, catlee, erik.stephens, guettli, haypo, jribbens, lemburg, pitrou, skip.montanaro, srittau, steve.roberts, tim_one, tomster
Date 2008-12-15.13:14:11
SpamBayes Score 4.08118e-07
Marked as misclassified No
Message-id <1229346852.46.0.0446612434358.issue1673409@psf.upfronthosting.co.za>
In-reply-to
Content
Leap second handling is usually configurable. Default on Debian Linux
(but similar on RHEL and SuSE):

>>> int(date(1994,1,1).strftime("%s")) - int(date(1993,1,1).strftime("%s"))
31536000

After doing "cp /usr/share/zoneinfo/right/Europe/Berlin /etc/localtime":

>>> int(date(1994,1,1).strftime("%s")) - int(date(1993,1,1).strftime("%s"))
31536001

Also, NTP servers usually get this right. I don't think, Python should
promote a wrong date handling by default, even if it's convenient.
History
Date User Action Args
2008-12-15 13:14:12srittausetrecipients: + srittau, lemburg, tim_one, skip.montanaro, brett.cannon, jribbens, guettli, amaury.forgeotdarc, belopolsky, pitrou, catlee, haypo, tomster, erik.stephens, steve.roberts
2008-12-15 13:14:12srittausetmessageid: <1229346852.46.0.0446612434358.issue1673409@psf.upfronthosting.co.za>
2008-12-15 13:14:11srittaulinkissue1673409 messages
2008-12-15 13:14:11srittaucreate