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 trcarden
Recipients belopolsky, ethan.furman, mark.dickinson, r.david.murray, tbarbugli, trcarden, vstinner
Date 2015-07-01.23:31:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435793515.99.0.243965909617.issue23517@psf.upfronthosting.co.za>
In-reply-to
Content
We are seeing this behavior influencing other libraries in python 3.4.

This should never fail if timestamp and fromtimestamp are implemented correctly:

from datetime import datetime
t = datetime.utcnow().timestamp()
t2 = datetime.utcfromtimestamp(t)
assert t == t2, 'Moving from timestamp and back should always work'
History
Date User Action Args
2015-07-01 23:31:56trcardensetrecipients: + trcarden, mark.dickinson, belopolsky, vstinner, r.david.murray, ethan.furman, tbarbugli
2015-07-01 23:31:55trcardensetmessageid: <1435793515.99.0.243965909617.issue23517@psf.upfronthosting.co.za>
2015-07-01 23:31:55trcardenlinkissue23517 messages
2015-07-01 23:31:55trcardencreate