snapshot before regression test

This commit is contained in:
t
2026-07-18 19:25:40 +08:00
commit 796222a300
2295 changed files with 206453 additions and 0 deletions

13
TransPyC.py Normal file
View File

@@ -0,0 +1,13 @@
# TransPyC 入口程序
# 拆分后的模块位于 lib/Shell/ 目录下
import lib._bootstrap # noqa: F401 设置 sys.path项目根 + lib/includes
from lib.Shell import (
SerializeSymbolTable, deSerializeSymbolTable,
SymbolFile, Config, TransPyC
)
__all__ = ['SerializeSymbolTable', 'deSerializeSymbolTable', 'SymbolFile', 'Config', 'TransPyC']
if __name__ == '__main__':
TransPyC().Run()