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 VertigoRay
Recipients VertigoRay
Date 2013-09-04.21:51:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378331468.16.0.119656145942.issue18926@psf.upfronthosting.co.za>
In-reply-to
Content
A plist with:
<key>My key</key>
<string>False</string>

will parse to a dict as:
{'My key': False}

Expected:
{'My key': 'False'}

If bool(False) is needed, the plist should say:
<key>My key</key>
<false/>
History
Date User Action Args
2013-09-04 21:51:08VertigoRaysetrecipients: + VertigoRay
2013-09-04 21:51:08VertigoRaysetmessageid: <1378331468.16.0.119656145942.issue18926@psf.upfronthosting.co.za>
2013-09-04 21:51:08VertigoRaylinkissue18926 messages
2013-09-04 21:51:08VertigoRaycreate