summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-10 20:35:16 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-10 20:35:16 (GMT)
commitda614dcc4f56bfb136c53b04d60889870d969926 (patch)
treea61612e5c30d966b64d003ffcf076b9533136f3c /Misc
parent900b7835268b1ca0ce0034f76a269a0d8eda570b (diff)
downloadcpython-da614dcc4f56bfb136c53b04d60889870d969926.zip
cpython-da614dcc4f56bfb136c53b04d60889870d969926.tar.gz
cpython-da614dcc4f56bfb136c53b04d60889870d969926.tar.bz2
Complete an open todo on pickletools -- add a pickle optimizer.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96ea7d7..c519ba6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -400,6 +400,9 @@ Core and builtins
Library
-------
+- The pickletools module now provides an optimize() function
+ that eliminates unused PUT opcodes from a pickle string.
+
- #2021: Allow tempfile.NamedTemporaryFile and SpooledTemporaryFile
to be used in with statements by correctly supporting the context
management protocol.