test_module_example.pyi 263 B

12345
  1. # 注入示例 .pyi:被 run_pika.py --module test_module_example 直接复制到 pikapython/ 下
  2. # 单一路径:不自动生成、不回退、无需多模式
  3. class Test:
  4. def add(self, a: int, b: int) -> int: ...
  5. def greet(self, name: str) -> str: ...