Actually start using the stuff we defined in grammar.

This commit is contained in:
Dave Halter
2017-05-25 13:38:49 -04:00
parent 333046c253
commit e7ea01fb35
2 changed files with 12 additions and 15 deletions

View File

@@ -18,7 +18,7 @@ PythonNode(simple_stmt, [PythonNode(arith_expr, [...]), <Newline: ''>])
"""
from parso.parser import ParserSyntaxError
from parso.grammar import create_grammar, load_grammar
from parso.grammar import Grammar, load_grammar
__version__ = '0.0.3'