summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2013-04-23 11:47:22 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2013-04-23 11:47:22 (GMT)
commit326edfde560410c8e92545e301722161b657db30 (patch)
tree907d2343844701c9a1523785044e52126921d19e /Misc
parentd638381ee0f62dd5df85de1fbdc93cb665347eae (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 60945c6..34df05d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.