diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-30 21:26:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-30 21:26:11 (GMT) |
commit | a897aeeef647259a938a36cb5eb6680c86021c6a (patch) | |
tree | 2659012d46b7222259d37a81a5f3d5fb330310eb /Misc | |
parent | b4d1e1f7c1af6ae33f0e371576c8bcafedb099db (diff) | |
download | cpython-a897aeeef647259a938a36cb5eb6680c86021c6a.zip cpython-a897aeeef647259a938a36cb5eb6680c86021c6a.tar.gz cpython-a897aeeef647259a938a36cb5eb6680c86021c6a.tar.bz2 |
bpo-32072: Fix issues with binary plists. (#4455)
* Fixed saving bytearrays.
* Identical objects will be saved only once.
* Equal references will be load as identical objects.
* Added support for saving and loading recursive data structures.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-18-21-13-52.bpo-32072.nwDV8L.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-18-21-13-52.bpo-32072.nwDV8L.rst b/Misc/NEWS.d/next/Library/2017-11-18-21-13-52.bpo-32072.nwDV8L.rst new file mode 100644 index 0000000..6da5bb4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-18-21-13-52.bpo-32072.nwDV8L.rst @@ -0,0 +1,6 @@ +Fixed issues with binary plists: + +* Fixed saving bytearrays. +* Identical objects will be saved only once. +* Equal references will be load as identical objects. +* Added support for saving and loading recursive data structures. |