]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 67908 via svnmerge from
authorSkip Montanaro <skip@pobox.com>
Tue, 23 Dec 2008 03:35:04 +0000 (03:35 +0000)
committerSkip Montanaro <skip@pobox.com>
Tue, 23 Dec 2008 03:35:04 +0000 (03:35 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67908 | skip.montanaro | 2008-12-22 21:30:15 -0600 (Mon, 22 Dec 2008) | 4 lines

  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.
........

Lib/test/test_file.py
Misc/NEWS

index 2d791a55c07f0df91f545cede9fff7c71440ca77..96f6da202355a0b6c4c20b47b2905ebd55d69a1f 100644 (file)
@@ -120,6 +120,8 @@ class AutoFileTests(unittest.TestCase):
         except:
             self.assertEquals(self.f.__exit__(*sys.exc_info()), None)
 
+    def testReadWhenWriting(self):
+        self.assertRaises(IOError, self.f.read)
 
 class OtherFileTests(unittest.TestCase):
 
index 4eba4f6d2a2f34ff67a7e3ae4bd41bad3517cef1..a305843c44879d0783cbf57bcc8e0b406763152a 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.2
 Core and Builtins
 -----------------
 
+- Added test case to ensure attempts to read from a file opened for writing
+  fail.
+
 - Issue #4597: Fixed several opcodes that weren't always propagating
   exceptions.