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 Dave Johansen
Recipients Dave Johansen
Date 2017-08-15.17:26:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1502817992.35.0.826006067807.issue31212@psf.upfronthosting.co.za>
In-reply-to
Content
This worked in Python 3.6.0 and before:
```
from datetime import datetime
d = datetime(1, 1, 1, 0, 0, 0)
d.timestamp()
```

The error output is:
```
ValueError: year 0 is out of range
```

But it used to return `-62135658000.0`.

Appears to be related to https://bugs.python.org/issue29921
History
Date User Action Args
2017-08-15 17:26:32Dave Johansensetrecipients: + Dave Johansen
2017-08-15 17:26:32Dave Johansensetmessageid: <1502817992.35.0.826006067807.issue31212@psf.upfronthosting.co.za>
2017-08-15 17:26:32Dave Johansenlinkissue31212 messages
2017-08-15 17:26:32Dave Johansencreate