summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codeop.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-06-15 23:26:30 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-06-15 23:26:30 (GMT)
commitf545baa0cce0fd92d5cd0d507e19c848ce9d95e8 (patch)
tree1e3af79e20838ebfe167a95351e85ce4802f0b99 /Lib/test/test_codeop.py
parentcda32b7d1d0a9d93294735880f9f065f5ab08bbe (diff)
downloadcpython-f545baa0cce0fd92d5cd0d507e19c848ce9d95e8.zip
cpython-f545baa0cce0fd92d5cd0d507e19c848ce9d95e8.tar.gz
cpython-f545baa0cce0fd92d5cd0d507e19c848ce9d95e8.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_codeop.py')
-rw-r--r--Lib/test/test_codeop.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_codeop.py b/Lib/test/test_codeop.py
index 630af49..5d06f2c 100644
--- a/Lib/test/test_codeop.py
+++ b/Lib/test/test_codeop.py
@@ -65,12 +65,12 @@ class CodeopTests(unittest.TestCase):
compile("pass", "<input>", 'single',
PyCF_DONT_IMPLY_DEDENT))
self.assertEquals(compile_command("\n"),
- compile("pass", "<input>", 'single',
+ compile("pass", "<input>", 'single',
PyCF_DONT_IMPLY_DEDENT))
else:
av("")
av("\n")
-
+
av("a = 1")
av("\na = 1")
av("a = 1\n")
@@ -125,9 +125,9 @@ class CodeopTests(unittest.TestCase):
ai("if 1:")
ai("if 1:\n")
ai("if 1:\n pass\n if 1:\n pass\n else:")
- ai("if 1:\n pass\n if 1:\n pass\n else:\n")
- ai("if 1:\n pass\n if 1:\n pass\n else:\n pass")
-
+ ai("if 1:\n pass\n if 1:\n pass\n else:\n")
+ ai("if 1:\n pass\n if 1:\n pass\n else:\n pass")
+
ai("def x():")
ai("def x():\n")
ai("def x():\n\n")
@@ -156,7 +156,7 @@ class CodeopTests(unittest.TestCase):
ai("a @")
ai("a b @")
ai("a ** @")
-
+
ai("a = ")
ai("a = 9 +")