This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author markgrandi
Recipients d9pouces, eric.araujo, jrjsmrtn, markgrandi, ned.deily, r.david.murray, ronaldoussoren, serhiy.storchaka
Date 2012-08-24.03:13:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345777987.99.0.302582310364.issue14455@psf.upfronthosting.co.za>
In-reply-to
Content
Where are you even seeing these json property lists? I just checked the most recent documentation for NSPropertyListSerialization, and they have not updated the enum for NSPropertyListFormat. It seems that if even Apple doesn't support writing json property lists with their own apis then we shouldn't worry about supporting it?

see: https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSPropertyListSerialization_Class/Reference/Reference.html

enum {
   NSPropertyListOpenStepFormat = kCFPropertyListOpenStepFormat,
   NSPropertyListXMLFormat_v1_0 = kCFPropertyListXMLFormat_v1_0,
   NSPropertyListBinaryFormat_v1_0 = kCFPropertyListBinaryFormat_v1_0
}; NSPropertyListFormat;
typedef NSUInteger NSPropertyListFormat;
History
Date User Action Args
2012-08-24 03:13:08markgrandisetrecipients: + markgrandi, ronaldoussoren, ned.deily, eric.araujo, r.david.murray, jrjsmrtn, serhiy.storchaka, d9pouces
2012-08-24 03:13:07markgrandisetmessageid: <1345777987.99.0.302582310364.issue14455@psf.upfronthosting.co.za>
2012-08-24 03:13:07markgrandilinkissue14455 messages
2012-08-24 03:13:07markgrandicreate