diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2014-02-06 10:19:18 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2014-02-06 10:19:18 (GMT) |
commit | 94e44a935b3dc1e67a6a3357f64324ee0c81d40c (patch) | |
tree | 7c8a8cb61491ec46dbe5e2042aa7fcaee4785fab /Misc/NEWS | |
parent | 3dcb0cf9b195afc9d3a5c79f8b0a6cd755bc7bd0 (diff) | |
download | cpython-94e44a935b3dc1e67a6a3357f64324ee0c81d40c.zip cpython-94e44a935b3dc1e67a6a3357f64324ee0c81d40c.tar.gz cpython-94e44a935b3dc1e67a6a3357f64324ee0c81d40c.tar.bz2 |
Issue #14455: fix handling of unsigned long long values for binary plist files
Values in the range of an unsigned long long, but outside of the range
of a signed long long were serialized as a negative value.
Due to a bug in PyObjC my test scripts indicated that the previous behavior
matched Apple's plist code, instead the handle large unsigned values correctly.
The change to plistlib.py is from a patch by Serhiy.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -109,6 +109,10 @@ Library - Issue #15304: concurrent.futures.wait() can block forever even if Futures have completed. Patch by Glenn Langford. +- Issue #14455: plistlib: fix serializing integers integers in the range + of an unsigned long long but outside of the range of signed long long for + binary plist files. + IDLE ---- |