diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-04-23 11:47:22 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-04-23 11:47:22 (GMT) |
commit | 326edfde560410c8e92545e301722161b657db30 (patch) | |
tree | 907d2343844701c9a1523785044e52126921d19e /Misc | |
parent | d638381ee0f62dd5df85de1fbdc93cb665347eae (diff) | |
download | cpython-326edfde560410c8e92545e301722161b657db30.zip cpython-326edfde560410c8e92545e301722161b657db30.tar.gz cpython-326edfde560410c8e92545e301722161b657db30.tar.bz2 |
Ensure that plistlib doesn't corrupt deeply nested datastructures
Without this changeset plistlib would write empty tags for plistlib.Data
objects in deeply nested datastructures.
Fixes #17353
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -36,6 +36,8 @@ Core and Builtins Library ------- +- Issue #17353: Plistlib emitted empty data tags with deeply nested datastructures + - Issue #11714: Use 'with' statements to assure a Semaphore releases a condition variable. Original patch by Thomas Rachel. |