On Feb 8, 8:02 pm, Gnarlodious <gnarlodi...@gmail.com> wrote: > I am trying to read a *.plist into Python 3's OrderedDict but can't > figure it out. Saying something like this: ... > I "upgraded" to Py3 to have OrderedDict, so please don't say it is > impossible...
You may be able to monkey patch an OrderedDict into the PlistParser. Here's an untested stab at it: from collections import OrderedDict import plistlib plistlib._InteralDict = OrderedDict Raymond -- http://mail.python.org/mailman/listinfo/python-list