summaryrefslogtreecommitdiff
path: root/Lib/test/test_ftplib.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-04-25 06:30:05 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2007-04-25 06:30:05 +0000
commit0d4c06e06e5ee1f3bb1fa8068114bd700d74864a (patch)
tree021c8e11696fc29a41ddd9e853af42e6008a58f6 /Lib/test/test_ftplib.py
parente47c508850392422ebbf15c86e7411b46addfcd0 (diff)
downloadcpython-git-0d4c06e06e5ee1f3bb1fa8068114bd700d74864a.tar.gz
Whitespace normalization. Ugh, we really need to do this more often.
You might want to review this change as it's my first time. Be gentle. :-)
Diffstat (limited to 'Lib/test/test_ftplib.py')
-rw-r--r--Lib/test/test_ftplib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py
index 0c388768c7..9298bf45d6 100644
--- a/Lib/test/test_ftplib.py
+++ b/Lib/test/test_ftplib.py
@@ -24,7 +24,7 @@ def server(evt):
evt.set()
class GeneralTests(TestCase):
-
+
def setUp(self):
ftplib.FTP.port = 9091
self.evt = threading.Event()
@@ -41,13 +41,13 @@ class GeneralTests(TestCase):
# connects
ftp = ftplib.FTP("localhost")
ftp.sock.close()
-
+
def testTimeoutDefault(self):
# default
ftp = ftplib.FTP("localhost")
self.assertTrue(ftp.sock.gettimeout() is None)
ftp.sock.close()
-
+
def testTimeoutValue(self):
# a value
ftp = ftplib.FTP("localhost", timeout=30)