]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #21888: plistlib's load() and loads() now work if the fmt parameter is
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 23 Jul 2014 15:50:19 +0000 (18:50 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 23 Jul 2014 15:50:19 +0000 (18:50 +0300)
specified.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 162bf4327fb443a538c0aad484faf6461a2345ef,2dc905dcbe4cceec8112fffdaeb54556e5084d81..0356347d97ddeecbefb76aea0494571a30654652
+++ b/Misc/NEWS
@@@ -108,15 -27,9 +108,18 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #21888: plistlib's load() and loads() now work if the fmt parameter is
+   specified.
 +- Issue #22032: __qualname__ instead of __name__ is now always used to format
 +  fully qualified class names of Python implemented classes.
 +
 +- Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix
 +  when contain an id in form " at 0x...".
 +
 +- Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a
 +  ValueError on ``fstat()`` failure.
 +
  - Issue #21044: tarfile.open() now handles fileobj with an integer 'name'
    attribute.  Based on patch by Antoine Pietri.