summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-07-02 15:42:47 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-07-02 15:42:47 (GMT)
commit5bdae3bb7c7ab9e85453698972fa5fa926f012f3 (patch)
treeed140d49cc67ee21d563cccb2b2f47fdebd8763e /Misc
parenta4a04069fd93395369b6061ed07f471e53f1c7a1 (diff)
downloadcpython-5bdae3bb7c7ab9e85453698972fa5fa926f012f3.zip
cpython-5bdae3bb7c7ab9e85453698972fa5fa926f012f3.tar.gz
cpython-5bdae3bb7c7ab9e85453698972fa5fa926f012f3.tar.bz2
Closes #12291: Fixed bug which was found when doing multiple loads from one stream.
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 423d7ec..2013559 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.1 release candidate 2?
Core and Builtins
-----------------
+- Issue #12291: You can now load multiple marshalled objects from a stream,
+ with other data interleaved between marshalled objects.
+
- Issue #12084: os.stat on Windows now works properly with relative symbolic
links when called from any directory.