summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-05 21:15:39 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-05 21:15:39 (GMT)
commit243757eb79fe4bee33882b1813cf33839117570f (patch)
treea9403be5a75dedbb5c5b6ea4ee563b7155c707fd /Misc
parent4a5f9677f31d75454ec10a0baefef37b63568a31 (diff)
downloadcpython-243757eb79fe4bee33882b1813cf33839117570f.zip
cpython-243757eb79fe4bee33882b1813cf33839117570f.tar.gz
cpython-243757eb79fe4bee33882b1813cf33839117570f.tar.bz2
Issue #10180: Pickling file objects is now explicitly forbidden, since
unpickling them produced nonsensical results.
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 af33d28..18c1cde 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -65,6 +65,9 @@ Core and Builtins
Library
-------
+- Issue #10180: Pickling file objects is now explicitly forbidden, since
+ unpickling them produced nonsensical results.
+
- Issue #10311: The signal module now restores errno before returning from
its low-level signal handler. Patch by Hallvard B Furuseth.