diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2014-01-15 10:32:35 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2014-01-15 10:32:35 (GMT) |
commit | 6db6653bbc0841600248e4d7b7542591067c4157 (patch) | |
tree | 1c3c992658e8f361b903bfcd3956956fcf7abf5e /Doc/whatsnew/3.4.rst | |
parent | 4a714d48ad727f6ad708ba2d3695f1dea4479fb6 (diff) | |
download | cpython-6db6653bbc0841600248e4d7b7542591067c4157.zip cpython-6db6653bbc0841600248e4d7b7542591067c4157.tar.gz cpython-6db6653bbc0841600248e4d7b7542591067c4157.tar.bz2 |
Issue #14455: Fix some issues with plistlib
* Negative integer support in binary plists was broken
* Better exception for invalid data
* Fix the versionadded/versionchanged markup in the documentation
* Add the interface cleanup to what's new for 3.4
Diffstat (limited to 'Doc/whatsnew/3.4.rst')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index d543973..6ace6d6 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -132,6 +132,8 @@ Significantly Improved Library Modules: a new :mod:`~email.message.Message` subclass (:class:`~email.contentmanager.EmailMessage`) that :ref:`simplify MIME handling <whatsnew_email_contentmanager>` (:issue:`18891`). +* :mod:`plistlib` has a cleaned up interface and support for binary + plist files (:issue:`14455`) CPython implementation improvements: |