summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2008-12-23 03:30:15 (GMT)
committerSkip Montanaro <skip@pobox.com>2008-12-23 03:30:15 (GMT)
commitf205c13fac76ff31dd20849b1530d0a6baf4f1ad (patch)
treea99a216cd4123a501563f233a58474bf1bda7850 /Misc
parent5423abd1824f7defde1698f8cd423de0e9164e06 (diff)
downloadcpython-f205c13fac76ff31dd20849b1530d0a6baf4f1ad.zip
cpython-f205c13fac76ff31dd20849b1530d0a6baf4f1ad.tar.gz
cpython-f205c13fac76ff31dd20849b1530d0a6baf4f1ad.tar.bz2
As a result of a regression that snuck into 2.5.3 add a test case that
ensures that when you try to read from a file opened for writing an IOError is raised.
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 ebe6105..7753924 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Added test case to ensure attempts to read from a file opened for writing
+ fail.
+
- Issue #2467: gc.DEBUG_STATS reported invalid elapsed times. Also, always
print elapsed times, not only when some objects are uncollectable /
unreachable. Original patch by Neil Schemenauer.