summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-02 21:41:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-02 21:41:14 (GMT)
commita9f48a0d4f0bad22275b5feb78f63a8a8f00a6f8 (patch)
tree2b8fe03afda19f7380363d50af4934b0b4893a1b /Misc
parent6fa98fb7ecee40329c5e8d74f583272ffedc97f9 (diff)
downloadcpython-a9f48a0d4f0bad22275b5feb78f63a8a8f00a6f8.zip
cpython-a9f48a0d4f0bad22275b5feb78f63a8a8f00a6f8.tar.gz
cpython-a9f48a0d4f0bad22275b5feb78f63a8a8f00a6f8.tar.bz2
Merged revisions 72223 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72223 | antoine.pitrou | 2009-05-02 23:13:23 +0200 (sam., 02 mai 2009) | 5 lines Isue #5084: unpickling now interns the attribute names of pickled objects, saving memory and avoiding growth in size of subsequent pickles. Proposal and original patch by Jake McGuire. ........
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 f4116ad..00270fd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,10 @@ Installation
Library
-------
+- Issue #5084: unpickling now interns the attribute names of pickled objects,
+ saving memory and avoiding growth in size of subsequent pickles. Proposal
+ and original patch by Jake McGuire.
+
- The json module now works exclusively with str and not bytes.
- Issue #3959: The ipaddr module has been added to the standard library.