summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-06-09 02:11:02 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-06-09 02:11:02 (GMT)
commit520d8ddd970a9b1da031070730151f6f5065cb47 (patch)
tree9fb7798d091a94348a52d7c49ad12d8d065df214
parente878fe6a58bfd20c614d5197bac2afaa8c4e1d96 (diff)
downloadcpython-520d8ddd970a9b1da031070730151f6f5065cb47.zip
cpython-520d8ddd970a9b1da031070730151f6f5065cb47.tar.gz
cpython-520d8ddd970a9b1da031070730151f6f5065cb47.tar.bz2
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 ;-)
-rw-r--r--Lib/test/test_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py
index 31527a0..aee7c36 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)