Skip to content
Closed

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 TypeAlias
  • Loading branch information
guoci committed Nov 19, 2025
commit 63f64849573fcc6c8437fb93d615cbb6fbbf2c28
2 changes: 1 addition & 1 deletion stdlib/_ctypes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class _CField(Generic[_CT, _GetT, _SetT]):
size: int
if sys.version_info >= (3, 14):
name: str
type: type[_CT]
type: TypeAlias = _CT
byte_offset: int
byte_size: int
is_bitfield: bool
Expand Down
Loading