Move the parse function to the grammar.

This commit is contained in:
Dave Halter
2017-05-22 14:06:40 -04:00
parent 3a0cd6d377
commit 7d3438c94d
4 changed files with 99 additions and 97 deletions

View File

@@ -114,7 +114,7 @@ def test_param_splitting():
def check(src, result):
# Python 2 tuple params should be ignored for now.
grammar = load_python_grammar('%s.%s' % sys.version_info[:2])
m = parse(src, grammar=grammar)
m = grammar.parse(src)
if py_version >= 30:
assert not list(m.iter_funcdefs())
else: