simpleparse.tests.test_deep_nesting | index /home/mcfletch/pylive/simpleparse/tests/test_deep_nesting.py |
Modules | ||||||
|
Data | ||
AnyInt = <Any Integer> NullResult = <Null Children> declaration = "testparser := as?\nas := a,as?\na := 'a'\n" expectedResult = (1, [('as', 0, 4, [('a', 0, 1, <Null Children>), ('as', 1, 4, [(...), (...)])])], 4) parser = (('as', 204, ([(('as', 204, (...), 1, 1),), (('a', 21, 'a'), ('as', 204, (...), 1, 1)), ((None, 21, 'a'),)], 1), 1, 1),) result = (1, [('as', 0, 4, [('a', 0, 1, None), ('as', 1, 4, [(...), (...)])])], 4) testdata = 'aaaa' |