summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-31 10:12:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-31 10:12:37 (GMT)
commitbfe1824d08fb107768ce17dd4de6c7f879935098 (patch)
tree8fb65d4b1a5cdc6ff13fb73fc58e5198750b3ae2 /Misc
parentc43a666ba2664d686387a8c4feb51aec868d06fe (diff)
downloadcpython-bfe1824d08fb107768ce17dd4de6c7f879935098.zip
cpython-bfe1824d08fb107768ce17dd4de6c7f879935098.tar.gz
cpython-bfe1824d08fb107768ce17dd4de6c7f879935098.tar.bz2
Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.
Fixed ambigious reverse mappings. Added many new mappings. Import mapping is no longer applied to modules already mapped with full name mapping. Added tests for compatible pickling and unpickling and for consistency of _compat_pickle mappings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ebac8d5..cd72813 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,10 @@ Core and Builtins
Library
-------
+- Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. Fixed
+ ambigious reverse mappings. Added many new mappings. Import mapping is no
+ longer applied to modules already mapped with full name mapping.
+
- Issue #23745: The new email header parser now handles duplicate MIME
parameter names without error, similar to how get_param behaves.