diff options
| author | Benjamin Peterson <benjamin@python.org> | 2011-02-26 22:11:02 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2011-02-26 22:11:02 (GMT) |
| commit | 8059e1e2140d08683429a6731ecf4b1d2385cce3 (patch) | |
| tree | ea2fede850afc6951800381fb4174b73e4a91b4f /Lib/lib2to3/tests/test_parser.py | |
| parent | aeb187a22b2210fcf240a318d1745d0153c5e574 (diff) | |
| download | cpython-8059e1e2140d08683429a6731ecf4b1d2385cce3.zip cpython-8059e1e2140d08683429a6731ecf4b1d2385cce3.tar.gz cpython-8059e1e2140d08683429a6731ecf4b1d2385cce3.tar.bz2 | |
Merged revisions 88535,88661 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r88535 | brett.cannon | 2011-02-23 13:46:46 -0600 (Wed, 23 Feb 2011) | 1 line
Add lib2to3.__main__ for easy testing from the console.
........
r88661 | benjamin.peterson | 2011-02-26 16:06:24 -0600 (Sat, 26 Feb 2011) | 6 lines
fix refactoring on formfeed characters #11250
This is because text.splitlines() is not the same as
list(StringIO.StringIO(text)).
........
Diffstat (limited to 'Lib/lib2to3/tests/test_parser.py')
| -rw-r--r-- | Lib/lib2to3/tests/test_parser.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/lib2to3/tests/test_parser.py b/Lib/lib2to3/tests/test_parser.py index 703d879..2602381 100644 --- a/Lib/lib2to3/tests/test_parser.py +++ b/Lib/lib2to3/tests/test_parser.py @@ -19,6 +19,16 @@ import sys # Local imports from lib2to3.pgen2 import tokenize from ..pgen2.parse import ParseError +from lib2to3.pygram import python_symbols as syms + + +class TestDriver(support.TestCase): + + def test_formfeed(self): + s = """print 1\n\x0Cprint 2\n""" + t = driver.parse_string(s) + self.assertEqual(t.children[0].children[0].type, syms.print_stmt) + self.assertEqual(t.children[1].children[0].type, syms.print_stmt) class GrammarTest(support.TestCase): |
