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

6
lib/StubGen/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
"""StubGen 包 - 存根文件生成器"""
from lib.StubGen.Config import StubGenConfig
from lib.StubGen.Converter import PythonToStubConverter
from lib.StubGen.Generator import StubGen, main
__all__ = ['StubGenConfig', 'PythonToStubConverter', 'StubGen', 'main']