Whitespace normalization.

This commit is contained in:
Tim Peters 2003-06-15 23:26:30 +00:00
parent cda32b7d1d
commit f545baa0cc
7 changed files with 11 additions and 12 deletions

View file

@ -84,7 +84,7 @@ class urlopenNetworkTests(unittest.TestCase):
self.assertEqual(gotten_url, URL)
def test_fileno(self):
if (sys.platform in ('win32',) or
if (sys.platform in ('win32',) or
not hasattr(os, 'fdopen')):
# On Windows, socket handles are not file descriptors; this
# test can't pass on Windows.