cpython icon indicating copy to clipboard operation
cpython copied to clipboard

datetime.timestamp() fails before 1970-01-02T01:00:00.000000

Open dtyeos opened this issue 3 years ago • 6 comments

Python 3.8.10 datetime 4.4 Windows 10

datetime(1970,1,1,0,0,0).timestamp()  # OSError: [Errno 22] Invalid argument
datetime(1970,1,1,23,59,59,999999).timestamp()  # OSError: [Errno 22] Invalid argument
datetime(1970,1,2,0,59,59,999999).timestamp()  # OSError: [Errno 22] Invalid argument

Minimal datetime where timestamp() is fine:

datetime(1970,1,2,1,0,0).timestamp()  # 86400.0

dtyeos avatar Jun 29 '22 13:06 dtyeos

Probable duplicate of gh-81708[^1]

[^1]: @erlend-aasland: edited the BPO link to a GitHub Issues link, for the convenience of the reader

dtyeos avatar Jun 29 '22 13:06 dtyeos

datetime(1970,1,1,0,0,0, tzinfo=None).timestamp()  # OSError: [Errno 22] Invalid argument
datetime(1970,1,1,0,0,0, tzinfo=timezone.utc).timestamp()  # 0.0

dtyeos avatar Jun 29 '22 14:06 dtyeos

Cannot reproduce this on Arch with python 3.10.5 with the system clock set to UTC+1. Perhaps this only affects Windows. Are you able to reproduce this using python 3.10?

sam@samtop ~ % python                                                  
Python 3.10.5 (main, Jun  6 2022, 18:49:26) [GCC 12.1.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import datetime, timezone
>>> datetime(1970,1,1,0,0,0, tzinfo=None).timestamp()
-3600.0
>>> datetime(1970,1,1,0,0,0, tzinfo=timezone.utc).timestamp()
0.0
>>> import time
>>> time.tzname
('GMT', 'BST')
>>> 

dignissimus avatar Jun 29 '22 23:06 dignissimus

C:\>py -3.10
Python 3.10.5 (tags/v3.10.5:f377153, Jun  6 2022, 16:14:13) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import datetime, timezone
>>> datetime(1970,1,1,0,0,0, tzinfo=None).timestamp()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 22] Invalid argument
>>> datetime(1970,1,1,0,0,0, tzinfo=timezone.utc).timestamp()
0.0
>>> import time
>>> time.tzname
('Romance Standard Time', 'Romance Daylight Time')
>>>

This should come from the fact that without any timezone specified, the lib relies on the Windows function which does not support times before the Epoch. The strange thing is that the whole day after the Epoch is unusable, which cannot be explained only by time zone.

dtyeos avatar Jun 30 '22 12:06 dtyeos

While running property-based tests with Hypothesis, I discovered that datetime.timestamp() also fails with the same error on Windows 10 x64 for datetimes after datetime.datetime(3001, 1, 19, 7, 59, 59, 999999).

Specifically:

> datetime.datetime(3001, 1, 19, 7, 59, 59, 999999).timestamp()
32536800000.0
> datetime.datetime(3001, 1, 19, 8, 0, 0, 0).timestamp()
OSError: [Errno 22] Invalid argument

I suspect this is related to the max value of the argument to time.ctime on Windows 10 x64 as discussed in this Stack Overflow thread.

benpryke avatar Mar 21 '23 23:03 benpryke

This issue is present on Windows 10 for Python 9, Python10 and Python11, and on Windows 11 for Python 11. I did not tested it on Python 9 and Python 10 on Windows 11.

In addition to the timestamp() function, a similar error is raised with the astimezone() function. For example, the following code fail with an OSError: [Errno 22] Invalid argument error:

import dateime
a = datetime.datetime(1901, 12, 25)
b = a.astimezone(tz=datetime.timezone.utc)

Note: This issue is likely related to https://github.com/python/cpython/issues/81708

achoum avatar Mar 21 '24 08:03 achoum

This issue is present on Python 3.12.7 on Windows 10 32bit and is causing me issues between production and development enviroments

ItsPadar avatar Dec 05 '24 10:12 ItsPadar

Duplicates: https://github.com/python/cpython/issues/94757, https://github.com/python/cpython/issues/81708

StanFromIreland avatar Mar 09 '25 09:03 StanFromIreland

@picnixz Maybe you could clean this up (since you seem to like triaging ;-) and decide which one should stay (at least please do add the os-windows labels, this project really needs some triaging :-( and unfortunately there is no way for most people to help with that) ?

They are all because we use localtime_s

The time_t value sourceTime represents the seconds elapsed since midnight (00:00:00), January 1, 1970, UTC.

_localtime64_s, which uses the __time64_t structure, allows dates to be expressed up through 23:59:59, January 18, 3001,

StanFromIreland avatar Mar 13 '25 16:03 StanFromIreland

I'll close this one as a duplicate of https://github.com/python/cpython/issues/81708 (as this is about being close to the EPOCH in some sense).

picnixz avatar Mar 30 '25 12:03 picnixz