summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 20:51:16 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-25 20:51:16 (GMT)
commitd2780aedce824867ed14bd9a2a5ef050ae0c8d30 (patch)
treee1f7313f05fc0220b3a0911c2ba3f11429f049c8 /Misc
parentaf62c7d3deb6e6db5a0ef1190b8dd889be013a41 (diff)
parent988512cfd7c896dd8b900d0f00cba05c4c807dc3 (diff)
downloadcpython-d2780aedce824867ed14bd9a2a5ef050ae0c8d30.zip
cpython-d2780aedce824867ed14bd9a2a5ef050ae0c8d30.tar.gz
cpython-d2780aedce824867ed14bd9a2a5ef050ae0c8d30.tar.bz2
(Merge 3.2) Issue #12175: RawIOBase.readall() now returns None if read()
returns None.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS18
1 files changed, 10 insertions, 8 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e0bb60a..60209bf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,11 +161,16 @@ Core and Builtins
Library
-------
-- Issue #11109 - New service_action method for BaseServer, used by
- ForkingMixin class for cleanup. Initial Patch by Justin Wark.
-
-- Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname().
- Patch by Sijin Joseph.
+- Issue #12175: RawIOBase.readall() now returns None if read() returns None.
+
+- Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError
+ if the file is closed.
+
+- Issue #11109: New service_action method for BaseServer, used by ForkingMixin
+ class for cleanup. Initial Patch by Justin Wark.
+
+- Issue #12045: Avoid duplicate execution of command in
+ ctypes.util._get_soname(). Patch by Sijin Joseph.
- Issue #10818: Remove the Tk GUI and the serve() function of the pydoc module,
pydoc -g has been deprecated in Python 3.2 and it has a new enhanced web
@@ -1062,9 +1067,6 @@ Core and Builtins
Library
-------
-- Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError
- if the file is closed.
-
- Issue #10916: mmap should not segfault when a file is mapped using 0 as length
and a non-zero offset, and an attempt to read past the end of file is made
(IndexError is raised instead). Patch by Ross Lagerwall.