summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-27 23:02:38 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-27 23:02:38 (GMT)
commit455f7bdc0543fa353d2666f16303b024c5e05155 (patch)
tree8f71b9125d386d23708ff109df3fefdc18aba84f /Misc
parent9a381c7a02022268c1db9c228283e5b533237784 (diff)
downloadcpython-455f7bdc0543fa353d2666f16303b024c5e05155.zip
cpython-455f7bdc0543fa353d2666f16303b024c5e05155.tar.gz
cpython-455f7bdc0543fa353d2666f16303b024c5e05155.tar.bz2
Issue #9378: python -m pickle <pickle file> will now load and display
the first object in the pickle file.
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 2437614..5b18d62 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -473,6 +473,9 @@ C-API
Library
-------
+- Issue #9378: python -m pickle <pickle file> will now load and
+ display the first object in the pickle file.
+
- Issue #4770: Restrict binascii module to accept only bytes (as specified).
And fix the email package to encode to ASCII instead of
``raw-unicode-escape`` before ASCII-to-binary decoding.