修正了 TPC 的一些错误,包括 Test 维护后 TPV 无法重新编译或重编译后越界的部分问题

This commit is contained in:
2026-07-20 11:12:30 +08:00
parent ab73420b4f
commit a277ded8d4
476 changed files with 4000 additions and 3439 deletions

View File

@@ -0,0 +1,33 @@
"""
Auto-generated Python stub file from _fakeduck.py
Module: _fakeduck
"""
import c
import t
import memhub
import string
class _Type:
def type_id(self: _Type) -> int: pass
class _str:
__requires__: list[str] = ['__mbuddy__']
__data__: str
__mbuddy__: memhub.MemBuddy | t.CPtr
def upper(self: _str) -> str: pass
def lower(self: _str) -> str: pass
def capitalize(self: _str) -> str: pass
def swapcase(self: _str) -> str: pass
def title(self: _str) -> str: pass
def casefold(self: _str) -> str: pass
def isupper(self: _str) -> bool: pass
def islower(self: _str) -> bool: pass
def isalpha(self: _str) -> bool: pass
def isdigit(self: _str) -> bool: pass
def isalnum(self: _str) -> bool: pass
def isspace(self: _str) -> bool: pass
def isascii(self: _str) -> bool: pass
def istitle(self: _str) -> bool: pass
def split(self: _str, delimiter: str) -> list[str]: pass