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 n8henrie
Recipients n8henrie
Date 2014-06-30.17:08:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404148099.9.0.0254576282966.issue21888@psf.upfronthosting.co.za>
In-reply-to
Content
When using the new plistlib.load and the FMT_BINARY option, line 997: 

p = _FORMATS[fmt]['parser'](use_builtin_types=use_builtin_types)

doesn't send the dict_type to _BinaryPlistParser.__init__ (line 601), which has dict_type as a required positional parameter, causing an error

def __init__(self, use_builtin_types, dict_type):

My first bugs.python.org report, hope I'm doing it right...
History
Date User Action Args
2014-06-30 17:08:19n8henriesetrecipients: + n8henrie
2014-06-30 17:08:19n8henriesetmessageid: <1404148099.9.0.0254576282966.issue21888@psf.upfronthosting.co.za>
2014-06-30 17:08:19n8henrielinkissue21888 messages
2014-06-30 17:08:19n8henriecreate