Skip to content
Snippets Groups Projects
user avatar
Miss Islington (bot) authored
As per the comments, this mirrors the [datetime documentation](https://docs.python.org/3/library/datetime.htmlGH-datetime.datetime.fromtimestamp

).

```
>>> import time
>>> time.localtime(999999999999999999999)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: timestamp out of range for platform time_t
>>> time.localtime(-3600)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OSError: [Errno 22] Invalid argument
```
(cherry picked from commit c83fc9c0)

Co-authored-by: default avatarslateny <46876382+slateny@users.noreply.github.com>
4d8e08b2
History
Name Last commit Last update