summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-15 10:21:31 (GMT)
committerGitHub <noreply@github.com>2017-05-15 10:21:31 (GMT)
commitedef358ed6d05f927bf1636cc5a920a9d868b131 (patch)
tree287ae68661a797aa09b0aa979f776a5329b7c881 /Doc/whatsnew
parentd812eb731d886065bdd9bc94a3f0e5dfdcd671a4 (diff)
downloadcpython-edef358ed6d05f927bf1636cc5a920a9d868b131.zip
cpython-edef358ed6d05f927bf1636cc5a920a9d868b131.tar.gz
cpython-edef358ed6d05f927bf1636cc5a920a9d868b131.tar.bz2
bpo-29196: Removed old-deprecated classes Plist, Dict and _InternalDict (#488)
in the plistlib module. Dict values in the result of functions readPlist() and readPlistFromBytes() are now exact dicts.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 8e5ac52..c305e5a 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -299,6 +299,12 @@ API and Feature Removals
longer take keyword arguments. The first argument of :func:`int` can now
be passes only as positional argument.
+* Removed previously deprecated in Python 2.4 classes ``Plist``, ``Dict`` and
+ ``_InternalDict`` in the :mod:`plistlib` module. Dict values in the result
+ of functions :func:`~plistlib.readPlist` and
+ :func:`~plistlib.readPlistFromBytes` are now normal dicts. You no longer
+ can use attribute access to access items of these dictionaries.
+
Porting to Python 3.7
=====================