summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2013-04-23 11:48:29 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2013-04-23 11:48:29 (GMT)
commita8a5c58a19104f2f4905b91c3c2d4473a02dc5a9 (patch)
tree8f3fcb654046bfcaf853dd8f6c9237abf6e6061d /Misc
parentcbe19e56eacf33c79d0e33b1cb56d5a478019c61 (diff)
parent326edfde560410c8e92545e301722161b657db30 (diff)
downloadcpython-a8a5c58a19104f2f4905b91c3c2d4473a02dc5a9.zip
cpython-a8a5c58a19104f2f4905b91c3c2d4473a02dc5a9.tar.gz
cpython-a8a5c58a19104f2f4905b91c3c2d4473a02dc5a9.tar.bz2
(3.3->default) 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 92c6043..9018eb6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,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.