🌐 AI搜索 & 代理 主页
Skip to content
Draft

test CI #15057

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix with sys.version_info
  • Loading branch information
guoci committed Nov 19, 2025
commit ca3ee3497e2f38b477a8033eb55540a3645e7791
17 changes: 9 additions & 8 deletions stdlib/_ctypes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,17 @@ _SetT = TypeVar("_SetT")

@final
class _CField(Generic[_CT, _GetT, _SetT]):
name: str
type: type[_CT]
offset: int
byte_offset: int
byte_size: int
size: int
is_bitfield: bool
bit_offset: int
bit_size: int
is_anonymous: bool
if sys.version_info >= (3, 14):
name: str
type: type[_CT]
byte_offset: int
byte_size: int
is_bitfield: bool
bit_offset: int
bit_size: int
is_anonymous: bool
if sys.version_info >= (3, 10):
@overload
def __get__(self, instance: None, owner: type[Any] | None = None, /) -> Self: ...
Expand Down
Loading