[issue39732] plistlib should export UIDs in XML like Apple does

2020-11-27 Thread Jon Janzen
Change by Jon Janzen : -- nosy: +bigfootjon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39732] plistlib should export UIDs in XML like Apple does

2020-02-23 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +ned.deily, ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39732] plistlib should export UIDs in XML like Apple does

2020-02-23 Thread SilentGhost
Change by SilentGhost : -- nosy: +serhiy.storchaka type: behavior -> enhancement versions: -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___

[issue39732] plistlib should export UIDs in XML like Apple does

2020-02-23 Thread Mingye Wang
Change by Mingye Wang : -- keywords: +patch pull_requests: +17987 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18622 ___ Python tracker ___

[issue39732] plistlib should export UIDs in XML like Apple does

2020-02-23 Thread Mingye Wang
New submission from Mingye Wang : Although there is no native UID type in Apple's XML format, Apple's NSKeyedArchiver still works with it because it converts the UID to a dict of {"CF$UID": int(some_uint64_val)}. Plistlib should do the same. For a sample, see