mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
Fix plistlib to work with dict views.
This commit is contained in:
parent
75d26ccd7a
commit
b38e2bcfd4
2 changed files with 2 additions and 3 deletions
|
|
@ -268,8 +268,7 @@ class PlistWriter(DumbXMLWriter):
|
|||
|
||||
def writeDict(self, d):
|
||||
self.beginElement("dict")
|
||||
items = d.items()
|
||||
items.sort()
|
||||
items = sorted(d.items())
|
||||
for key, value in items:
|
||||
if not isinstance(key, (str, unicode)):
|
||||
raise TypeError("keys must be strings")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue