diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-19 02:44:12 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-19 02:44:12 (GMT) |
commit | 3b5de4db92db06dbd9a32826fdbdb751f3e5054f (patch) | |
tree | 8d0fae8da4b89d52f0d21e79cd6aa51609b73b64 /Lib | |
parent | 8266af4f067db77f1bd061d227f382de4064d5bc (diff) | |
download | cpython-3b5de4db92db06dbd9a32826fdbdb751f3e5054f.zip cpython-3b5de4db92db06dbd9a32826fdbdb751f3e5054f.tar.gz cpython-3b5de4db92db06dbd9a32826fdbdb751f3e5054f.tar.bz2 |
Reverted whitespace normalization on this file. I should really change
this thing so it doesn't rely on being unnormalized. (That's the
editorial "I", if anyone's listening <wink>.)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/tokenize_tests.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/Lib/test/tokenize_tests.py b/Lib/test/tokenize_tests.py index 4632ef1..e990a36 100644 --- a/Lib/test/tokenize_tests.py +++ b/Lib/test/tokenize_tests.py @@ -1,5 +1,5 @@ # Tests for the 'tokenize' module. -# Large bits stolen from test_grammar.py. +# Large bits stolen from test_grammar.py. # Comments "#" @@ -129,17 +129,17 @@ bar \\ baz if 1: x = 2 if 1: - x = 2 + x = 2 if 1: while 0: - if 0: - x = 2 - x = 2 + if 0: + x = 2 + x = 2 if 0: - if 2: - while 0: - if 1: - x = 2 + if 2: + while 0: + if 1: + x = 2 # Operators @@ -172,3 +172,4 @@ x = -1*1/1 + 1*1 - ---1*1 # selector import sys, time x = sys.modules['time'].time() + |