[issue11101] plistlib has no graceful way of handing None values

2015-04-23 Thread Behdad Esfahbod
Behdad Esfahbod added the comment: plistlib's internal implementation already supports sort_keys and skipkeys, those just are not wired to load() and loads(). -- nosy: +Behdad.Esfahbod ___ Python tracker _

[issue11101] plistlib has no graceful way of handing None values

2014-12-03 Thread Matt Hansen
Changes by Matt Hansen : -- nosy: +Matt.Hansen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue11101] plistlib has no graceful way of handing None values

2014-10-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Note that binary plist format supports None. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue11101] plistlib has no graceful way of handing None values

2013-05-24 Thread Ronald Oussoren
Ronald Oussoren added the comment: At first I didn't like the proposal, but when I looked at the JSON module I noticed it has similar functionality for ignoring keys that cannot be represented in a JSON file. I'll look into this after merging #14455. The JSON library has two other options tha

[issue11101] plistlib has no graceful way of handing None values

2011-02-04 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +jvr, ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11101] plistlib has no graceful way of handing None values

2011-02-02 Thread Bob Van Zant
New submission from Bob Van Zant : The Apple plist format does not support None or Null values in its output. A Null value in plist is denoted by the absence of the key in the data structure. The python plist writer generates a TypeError when a None value is encoded. This issue is to track dea