File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 4141# - 'full-abi': All of the struct is part of the ABI, including the size
4242# (users may define arrays of these structs).
4343# Typically used for initialization, rather than at runtime.
44+ # Any members whose names start with an underscore are not part of the
45+ # limited API; they're for CPython's use only.
4446# - 'opaque': No members are part of the ABI, nor is the size. The Limited
4547# API only handles these via pointers. The C definition should be
4648# incomplete (opaque).
26872689 struct_abi_kind = ' full-abi'
26882690[struct .PyLongExport ]
26892691 added = ' 3.15'
2690- struct_abi_kind = ' members'
2691- members = [' value' , ' negative' , ' ndigits' , ' digits' ]
2692+ # Note: The `_reserved` member of this struct is for interal use only.
2693+ # (The definition of 'full-abi' was clarified when this entry was added.)
2694+ struct_abi_kind = ' full-abi'
You can’t perform that action at this time.
0 commit comments