linkchecker/PyLR/__init__.py
2000-02-28 13:44:24 +00:00

12 lines
238 B
Python

"""Parser generator
"""
import Grammar
from Lexer import Lexer
from Parser import Parser
from GrammarLexer import GrammarLexer
# add this after calling Grammar._bootstrap()
from GrammarParser import GrammarParser
__version__ = "$Id$"