mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Fix symbol numbers in test_parser test.
This commit is contained in:
parent
2cc8a5e490
commit
3445b482b3
1 changed files with 8 additions and 8 deletions
|
@ -471,18 +471,18 @@ class IllegalSyntaxTestCase(unittest.TestCase):
|
|||
self.check_bad_tree(tree, "malformed global ast")
|
||||
|
||||
def test_missing_import_source(self):
|
||||
# from import a
|
||||
# from import fred
|
||||
tree = \
|
||||
(257,
|
||||
(267,
|
||||
(268,
|
||||
(269,
|
||||
(281,
|
||||
(283, (1, 'from'), (1, 'import'),
|
||||
(286, (284, (1, 'fred')))))),
|
||||
(268,
|
||||
(269,
|
||||
(270,
|
||||
(282,
|
||||
(284, (1, 'from'), (1, 'import'),
|
||||
(287, (285, (1, 'fred')))))),
|
||||
(4, ''))),
|
||||
(4, ''), (0, ''))
|
||||
self.check_bad_tree(tree, "from import a")
|
||||
self.check_bad_tree(tree, "from import fred")
|
||||
|
||||
|
||||
class CompileTestCase(unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue