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 vstinner
Recipients belopolsky, doughellmann, vstinner
Date 2015-03-03.15:48:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425397695.27.0.405286684078.issue23574@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, mktime() returns the same timestamp with and without the leap second:

>>> time.mktime((2012, 6, 30, 23, 59, 59, -1, -1, -1))
1341093599.0
>>> time.mktime((2012, 6, 30, 23, 59, 60, -1, -1, -1))
1341093600.0
>>> time.mktime((2012, 7, 1, 0, 0, 0, -1, -1, -1))
1341093600.0
History
Date User Action Args
2015-03-03 15:48:15vstinnersetrecipients: + vstinner, belopolsky, doughellmann
2015-03-03 15:48:15vstinnersetmessageid: <1425397695.27.0.405286684078.issue23574@psf.upfronthosting.co.za>
2015-03-03 15:48:15vstinnerlinkissue23574 messages
2015-03-03 15:48:15vstinnercreate