[issue31897] Unexpected exceptions in plistlib.loads

2017-11-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Opened issue32072 for infinite recursion and related issues. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6969d368c43d4c97e5f7b7b22904305ec68f79ba by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-31897: Convert unexpected errors when read bogus binary plists into InvalidFileException. (GH-4171) (#4192) https://github.com/python/cpyt

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-31 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4162 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset db91e0fe2417f075693a194a492b1699829871e7 by Serhiy Storchaka in branch 'master': bpo-31897: Convert unexpected errors when read bogus binary plists into InvalidFileException. (#4171) https://github.com/python/cpython/commit/db91e0fe2417f075693

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-30 Thread Ned Williamson
Ned Williamson added the comment: Thank you for the quick PR! I will report as behavior next time. I'm also following the library reference and reporting only unexpected exceptions. I trust you to reject any bugs that are expected functionality. I may follow up with additional testcases once

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: PR 4171 fixes the following errors: 1. OverflowError is raised by seek() for too large offsets of objects or the offset table. 2. Since read() past the file returns b'' and int.from_bytes() used for non-standard sizes accepts b'', bogus offsets and referen

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +4140 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue31897] Unexpected exceptions in plistlib.loads

2017-10-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- title: RecursionError in plistlib.loads -> Unexpected exceptions in plistlib.loads ___ Python tracker ___ __