summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_netrc.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-04-16 01:38:40 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-04-16 01:38:40 (GMT)
commit863ac44b74cd66f7d289748816d65c65808c149b (patch)
tree8536f8a72110b9996cb9e6746b6bb4cf3cb73733 /Lib/test/test_netrc.py
parentc86c1b88f96ec48e5502b9b8ba5cc833f57ce476 (diff)
downloadcpython-863ac44b74cd66f7d289748816d65c65808c149b.zip
cpython-863ac44b74cd66f7d289748816d65c65808c149b.tar.gz
cpython-863ac44b74cd66f7d289748816d65c65808c149b.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_netrc.py')
-rw-r--r--Lib/test/test_netrc.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/Lib/test/test_netrc.py b/Lib/test/test_netrc.py
index 5922fdc..2cf1ae4 100644
--- a/Lib/test/test_netrc.py
+++ b/Lib/test/test_netrc.py
@@ -12,7 +12,7 @@ macdef macro2
line3
line4
-default login log2 password pass2
+default login log2 password pass2
"""
@@ -25,7 +25,7 @@ class NetrcTestCase(unittest.TestCase):
fp.write(TEST_NETRC)
fp.close()
self.netrc = netrc.netrc(temp_filename)
-
+
def tearDown (self):
del self.netrc
os.unlink(temp_filename)
@@ -36,8 +36,7 @@ class NetrcTestCase(unittest.TestCase):
)
self.assert_(self.netrc.hosts['foo'] == ('log1', 'acct1', 'pass1'))
self.assert_(self.netrc.hosts['default'] == ('log2', None, 'pass2'))
-
-
+
+
if __name__ == "__main__":
test_support.run_unittest(NetrcTestCase)
-