[Python-checkins] r46762 - python/trunk/Lib/test/test_file.py

tim.peters python-checkins at python.org
Fri Jun 9 04:11:02 CEST 2006


Author: tim.peters
Date: Fri Jun  9 04:11:02 2006
New Revision: 46762

Modified:
   python/trunk/Lib/test/test_file.py
Log:
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 ;-)


Modified: python/trunk/Lib/test/test_file.py
==============================================================================
--- python/trunk/Lib/test/test_file.py	(original)
+++ python/trunk/Lib/test/test_file.py	Fri Jun  9 04:11:02 2006
@@ -86,7 +86,7 @@
         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)


More information about the Python-checkins mailing list