Rich-Nelson

Results 1 comments of Rich-Nelson

The epoch overflow issue seems like it can be addressed by a method described here. https://stackoverflow.com/questions/65481616/python-overflowerror-creating-date-from-timestamp-in-32bit-system#answer-65494704 After replacing [this line](https://github.com/boto/botocore/blob/159309df2847ab36ca73e2b8c33e7b3306417410/botocore/utils.py#L736) `return datetime.datetime.fromtimestamp(value, tzinfo())` in the `_parse_timestamp_with_tzinfo` function with this ```return...