diff options
| author | 2024-02-25 11:55:54 +0800 | |
|---|---|---|
| committer | 2024-02-25 11:55:54 +0800 | |
| commit | 3f15d3828a3403bb3fe59bd8d2d82db45c02f90b (patch) | |
| tree | 834fd9ea1990868f087c4e7952203560e54d407f /nivis-python/__init__.py | |
| parent | 0bc1e29d7d587d4343b112fd444fdd5d9ec19e82 (diff) | |
| download | TRPGNivis-3f15d3828a3403bb3fe59bd8d2d82db45c02f90b.tar.gz TRPGNivis-3f15d3828a3403bb3fe59bd8d2d82db45c02f90b.zip | |
refactor!: sync package name
Diffstat (limited to 'nivis-python/__init__.py')
| -rw-r--r-- | nivis-python/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nivis-python/__init__.py b/nivis-python/__init__.py index f19e06b..943368b 100644 --- a/nivis-python/__init__.py +++ b/nivis-python/__init__.py @@ -1,11 +1,11 @@ -"""Psi -@TODO 词法分析器 -@BODY 似乎要写的还蛮多的,所以先写几个TODO List +"""nivis + +@TODO Lexer support +@BODY Lex function. """ -__all__ = ["psi", "Exception", "interpreter", "lexer", "Parser"] +__all__ = ["Execution", "Interpreter", "Lexer", "Parser"] -from .psi import psi from .execution import Execution from .interpreter import Interpreter from .lexer import Lexer |
