[issue26709] Year 2038 problem in plistlib

2016-04-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Ronald. -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue26709] Year 2038 problem in plistlib

2016-04-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset ba35b0404163 by Serhiy Storchaka in branch '3.5': Issue #26709: Fixed Y2038 problem in loading binary PLists. https://hg.python.org/cpython/rev/ba35b0404163 New changeset 778ccbe3cf74 by Serhiy Storchaka in branch 'default': Issue #26709: Fixed Y203

[issue26709] Year 2038 problem in plistlib

2016-04-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: Patch looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue26709] Year 2038 problem in plistlib

2016-04-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Plistlib fails to load dates before year 1901 and after year 2038 in binary format on platforms with 32-bit time_t. >>> data = plistlib.dumps(datetime.datetime(1901, 1, 1), >>> fmt=plistlib.FMT_BINARY) >>> plistlib.loads(data) Traceback (most recent call l