[New-bugs-announce] [issue21888] plistlib.FMT_BINARY behavior doesn't send required dict parameter

Nathan Henrie report at bugs.python.org
Mon Jun 30 19:08:19 CEST 2014


New submission from Nathan Henrie:

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...

----------
components: Library (Lib)
messages: 221969
nosy: n8henrie
priority: normal
severity: normal
status: open
title: plistlib.FMT_BINARY behavior doesn't send required dict parameter
type: behavior
versions: Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue21888>
_______________________________________


More information about the New-bugs-announce mailing list