[issue32072] Issues with binary plists

2019-05-10 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg342093 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue32072] Issues with binary plists

2019-05-10 Thread Ned Deily
Ned Deily added the comment: New changeset c59731d92dc73111d224876f1caa064097aad786 by larryhastings (Serhiy Storchaka) in branch '3.4': [3.4] bpo-32072: Fix issues with binary plists. (GH-4455) (#4658) https://github.com/python/cpython/commit/c59731d92dc73111d224876f1caa064097aad786

[issue32072] Issues with binary plists

2018-02-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: @larry: plists are Apple's equivalent to Windows INI files ;-) -- ___ Python tracker ___

[issue32072] Issues with binary plists

2018-01-31 Thread Larry Hastings
Larry Hastings added the comment: Thank you for the fix! I just wish I knew what plists were ;-) -- ___ Python tracker ___

[issue32072] Issues with binary plists

2018-01-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Larry. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32072] Issues with binary plists

2018-01-23 Thread Larry Hastings
Larry Hastings added the comment: New changeset 43f014d3f12468edf61046f0612edc7660042fd5 by larryhastings (Serhiy Storchaka) in branch '3.5': [3.5] bpo-32072: Fix issues with binary plists. (GH-4455) (#4656)

[issue32072] Issues with binary plists

2018-01-22 Thread Larry Hastings
Larry Hastings added the comment: New changeset c59731d92dc73111d224876f1caa064097aad786 by larryhastings (Serhiy Storchaka) in branch '3.4': [3.4] bpo-32072: Fix issues with binary plists. (GH-4455) (#4658)

[issue32072] Issues with binary plists

2017-12-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: For example: a = [] for i in range(22): a = [a, a] b = plistlib.dumps(a, fmt=plistlib.FMT_BINARY) The result is 130 bytes long on patched plistlib. But plistlib.dumps(b) will expand to a structure consuming almost a

[issue32072] Issues with binary plists

2017-11-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8cd31082fba88cf0064590fd3d55b6c1c964f11c by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-32072: Fix issues with binary plists. (GH-4455) (#4654)

[issue32072] Issues with binary plists

2017-11-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +4570 ___ Python tracker ___ ___

[issue32072] Issues with binary plists

2017-11-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +4568 ___ Python tracker ___ ___

[issue32072] Issues with binary plists

2017-11-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +larry ___ Python tracker ___ ___

[issue32072] Issues with binary plists

2017-11-30 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4566 ___ Python tracker ___

[issue32072] Issues with binary plists

2017-11-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a897aeeef647259a938a36cb5eb6680c86021c6a by Serhiy Storchaka in branch 'master': bpo-32072: Fix issues with binary plists. (#4455) https://github.com/python/cpython/commit/a897aeeef647259a938a36cb5eb6680c86021c6a

[issue32072] Issues with binary plists

2017-11-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ronald, could you please make a review? I want to merge this before 3.7.0a3. -- ___ Python tracker

[issue32072] Issues with binary plists

2017-11-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +4393 stage: -> patch review ___ Python tracker ___

[issue32072] Issues with binary plists

2017-11-18 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : plistlib creates a new objects when read references instead of using already read object. As result it doesn't preserve identity: >>> import plistlib >>> a = [['spam']]*2 >>> a[0] is a[1] True >>> b =