From: Tim Peters Date: Fri, 9 Jun 2006 02:11:02 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.5b1~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=520d8ddd970a9b1da031070730151f6f5065cb47;p=thirdparty%2FPython%2Fcpython.git Whitespace normalization. Since test_file is implicated in mysterious test failures when followed by test_optparse, if I had any brains I'd look at the checkin that last changed test_file ;-) --- diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index 31527a0feae3..aee7c3640ffa 100644 --- a/Lib/test/test_file.py +++ b/Lib/test/test_file.py @@ -86,7 +86,7 @@ class AutoFileTests(unittest.TestCase): self.assertEquals(f.name, TESTFN) self.assert_(not f.isatty()) self.assert_(not f.closed) - + self.assertRaises(TypeError, f.readinto, "") f.close() self.assert_(f.closed)