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. :-)
diff --git a/Lib/test/test_poplib.py b/Lib/test/test_poplib.py
index 3f1be7d..35ff636 100644
--- a/Lib/test/test_poplib.py
+++ b/Lib/test/test_poplib.py
@@ -25,7 +25,7 @@
evt.set()
class GeneralTests(TestCase):
-
+
def setUp(self):
self.evt = threading.Event()
threading.Thread(target=server, args=(self.evt,)).start()
@@ -38,13 +38,13 @@
# connects
pop = poplib.POP3("localhost", 9091)
pop.sock.close()
-
+
def testTimeoutDefault(self):
# default
pop = poplib.POP3("localhost", 9091)
self.assertTrue(pop.sock.gettimeout() is None)
pop.sock.close()
-
+
def testTimeoutValue(self):
# a value
pop = poplib.POP3("localhost", 9091, timeout=30)