From: Andrés Delfino Date: Fri, 8 Jun 2018 21:51:20 +0000 (-0300) Subject: bpo-33801: Remove non-ordered dict comment from plistlib doc (GH-7495) X-Git-Tag: v3.8.0a1~1615 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1cbdb2208aa309cf288ee0b53f0ecd85279bb934;p=thirdparty%2FPython%2Fcpython.git bpo-33801: Remove non-ordered dict comment from plistlib doc (GH-7495) --- diff --git a/Doc/library/plistlib.rst b/Doc/library/plistlib.rst index 20c086c8b524..8bd6b63a8ee5 100644 --- a/Doc/library/plistlib.rst +++ b/Doc/library/plistlib.rst @@ -63,9 +63,7 @@ This module defines the following functions: :class:`Data`. The *dict_type* is the type used for dictionaries that are read from the - plist file. The exact structure of the plist can be recovered by using - :class:`collections.OrderedDict` (although the order of keys shouldn't be - important in plist files). + plist file. XML data for the :data:`FMT_XML` format is parsed using the Expat parser from :mod:`xml.parsers.expat` -- see its documentation for possible