diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-15 10:21:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-15 10:21:31 (GMT) |
commit | edef358ed6d05f927bf1636cc5a920a9d868b131 (patch) | |
tree | 287ae68661a797aa09b0aa979f776a5329b7c881 /Misc/NEWS | |
parent | d812eb731d886065bdd9bc94a3f0e5dfdcd671a4 (diff) | |
download | cpython-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 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -323,6 +323,11 @@ Extension Modules Library ------- +- bpo-29196: Removed previously deprecated in Python 2.4 classes Plist, Dict + and _InternalDict in the plistlib module. Dict values in the result of + functions readPlist() and readPlistFromBytes() are now normal dicts. You + no longer can use attribute access to access items of these dictionaries. + - bpo-9850: The :mod:`macpath` is now deprecated and will be removed in Python 3.8. |