summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-06-27 11:52:49 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-06-27 11:52:49 (GMT)
commit3249d00f4d42a714d2038685c6b280a7fcfc5be7 (patch)
tree41eef983dc70fb77cd1233904d71e3c2f3f587b5 /Lib
parent7b9053a274308100d5849a57df3d9f44658130eb (diff)
downloadcpython-3249d00f4d42a714d2038685c6b280a7fcfc5be7.zip
cpython-3249d00f4d42a714d2038685c6b280a7fcfc5be7.tar.gz
cpython-3249d00f4d42a714d2038685c6b280a7fcfc5be7.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/compiler/transformer.py2
-rw-r--r--Lib/test/test_mailbox.py4
-rw-r--r--Lib/test/test_warnings.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index 9ea0950..53d30f0 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -922,7 +922,7 @@ class Transformer:
return TryFinally(self.com_node(nodelist[2]),
self.com_node(nodelist[5]),
lineno=nodelist[0][2])
-
+
#tryexcept: [TryNode, [except_clauses], elseNode)]
clauses = []
elseNode = None
diff --git a/Lib/test/test_mailbox.py b/Lib/test/test_mailbox.py
index e17de5d..474354f 100644
--- a/Lib/test/test_mailbox.py
+++ b/Lib/test/test_mailbox.py
@@ -738,12 +738,12 @@ class _TestMboxMMDF(TestMailbox):
time.sleep(0.5)
self.assertRaises(mailbox.ExternalClashError,
self._box.lock)
-
+
# Wait for child to exit. Locking should now succeed.
exited_pid, status = os.waitpid(pid, 0)
self._box.lock()
self._box.unlock()
-
+
class TestMbox(_TestMboxMMDF):
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py
index 4663814..a7ccb6b 100644
--- a/Lib/test/test_warnings.py
+++ b/Lib/test/test_warnings.py
@@ -92,7 +92,7 @@ class TestModule(unittest.TestCase):
warnings._setoption, 'ignore:2::4:-5')
warnings._setoption('error::Warning::0')
self.assertRaises(UserWarning, warnings.warn, 'convert to error')
-
+
def test_main(verbose=None):
# Obscure hack so that this test passes after reloads or repeated calls