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 tim.peters
Recipients belopolsky, eitan.adler, tim.peters
Date 2018-05-19.18:51:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526755876.76.0.682650639539.issue33579@psf.upfronthosting.co.za>
In-reply-to
Content
They both look wrong to me.  Under 3.6.5 on Win10, `one` and `three` are the same.

Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32

time.struct_time(tm_year=2009, tm_mon=2, tm_mday=13, tm_hour=23, tm_min=31, tm_sec=39, tm_wday=4, tm_yday=44, tm_isdst=0)

And that matches what `datetime` computes:

>>> from datetime import *
>>> datetime(1970, 1, 1) + timedelta(seconds=1234567899)
datetime.datetime(2009, 2, 13, 23, 31, 39)
History
Date User Action Args
2018-05-19 18:51:16tim.peterssetrecipients: + tim.peters, belopolsky, eitan.adler
2018-05-19 18:51:16tim.peterssetmessageid: <1526755876.76.0.682650639539.issue33579@psf.upfronthosting.co.za>
2018-05-19 18:51:16tim.peterslinkissue33579 messages
2018-05-19 18:51:16tim.peterscreate