Commit 6f35eb23 authored by Tim Peters's avatar Tim Peters

Whitespace normalization.

parent 531e0e54
...@@ -199,7 +199,7 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase): ...@@ -199,7 +199,7 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
yield x yield x
else: else:
yield tree yield tree
terminals = list(walk(st2)) terminals = list(walk(st2))
self.assertEqual([ self.assertEqual([
(1, 'def', 1, 0), (1, 'def', 1, 0),
......
...@@ -33,7 +33,7 @@ NAME 'False' (3, 11) (3, 16) ...@@ -33,7 +33,7 @@ NAME 'False' (3, 11) (3, 16)
COMMENT '# NEWLINE' (3, 17) (3, 26) COMMENT '# NEWLINE' (3, 17) (3, 26)
NEWLINE '\\n' (3, 26) (3, 27) NEWLINE '\\n' (3, 26) (3, 27)
DEDENT '' (4, 0) (4, 0) DEDENT '' (4, 0) (4, 0)
There will be a bunch more tests of specific source patterns. There will be a bunch more tests of specific source patterns.
...@@ -43,7 +43,7 @@ regenerate the original program text from the tokens. ...@@ -43,7 +43,7 @@ regenerate the original program text from the tokens.
There are some standard formatting practices that are easy to get right. There are some standard formatting practices that are easy to get right.
>>> roundtrip("if x == 1:\\n" >>> roundtrip("if x == 1:\\n"
... " print x\\n") ... " print x\\n")
if x == 1: if x == 1:
print x print x
...@@ -53,7 +53,7 @@ whitespace after the colon. You can't see it, but it's there! ...@@ -53,7 +53,7 @@ whitespace after the colon. You can't see it, but it's there!
>>> roundtrip("if x == 1 : \\n" >>> roundtrip("if x == 1 : \\n"
... " print x\\n") ... " print x\\n")
if x == 1 : if x == 1 :
print x print x
Comments need to go in the right place. Comments need to go in the right place.
......
...@@ -877,7 +877,7 @@ def add_files(db): ...@@ -877,7 +877,7 @@ def add_files(db):
if not have_ctypes: if not have_ctypes:
print "WARNING: _ctypes.pyd not found, ctypes will not be included" print "WARNING: _ctypes.pyd not found, ctypes will not be included"
extensions.remove("_ctypes.pyd") extensions.remove("_ctypes.pyd")
# Add all .py files in Lib, except lib-tk, test # Add all .py files in Lib, except lib-tk, test
dirs={} dirs={}
pydirs = [(root,"Lib")] pydirs = [(root,"Lib")]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment