sly/sly/__init__.py
2018-11-18 07:57:34 -06:00

7 lines
103 B
Python

from .lex import *
from .yacc import *
__version__ = "0.4"
__all__ = [ *lex.__all__, *yacc.__all__ ]