mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-21 16:30:28 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@14 e7d03fd6-7b0d-0410-9947-9c21f3af8025
12 lines
238 B
Python
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$"
|
|
|