#17881: clarify documentation of plistlib.

This commit is contained in:
Ezio Melotti 2013-04-30 16:34:04 +03:00
parent 5d6620d9d5
commit ab6ab15e7d
1 changed files with 3 additions and 3 deletions

View File

@ -47,8 +47,8 @@ This module defines the following functions:
.. function:: readPlist(pathOrFile)
Read a plist file. *pathOrFile* may either be a file name or a (readable)
file object. Return the unpacked root object (which usually is a
Read a plist file. *pathOrFile* may either be a file name or a (readable and
binary) file object. Return the unpacked root object (which usually is a
dictionary).
The XML data is parsed using the Expat parser from :mod:`xml.parsers.expat`
@ -59,7 +59,7 @@ This module defines the following functions:
.. function:: writePlist(rootObject, pathOrFile)
Write *rootObject* to a plist file. *pathOrFile* may either be a file name
or a (writable) file object.
or a (writable and binary) file object.
A :exc:`TypeError` will be raised if the object is of an unsupported type or
a container that contains objects of unsupported types.