Skip to content

Commit

Permalink
[BOT] update stable_abi.toml (#115)
Browse files Browse the repository at this point in the history
Co-authored-by: woodruffw <[email protected]>
  • Loading branch information
github-actions[bot] and woodruffw authored Aug 28, 2024
1 parent 925fdf6 commit 5b38768
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 2 deletions.
48 changes: 48 additions & 0 deletions abi3info/_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -4671,6 +4671,54 @@
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_FromInt32", visibility=None): Function(
symbol=Symbol(name="PyLong_FromInt32", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_FromUInt32", visibility=None): Function(
symbol=Symbol(name="PyLong_FromUInt32", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_AsInt32", visibility=None): Function(
symbol=Symbol(name="PyLong_AsInt32", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_AsUInt32", visibility=None): Function(
symbol=Symbol(name="PyLong_AsUInt32", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_FromInt64", visibility=None): Function(
symbol=Symbol(name="PyLong_FromInt64", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_FromUInt64", visibility=None): Function(
symbol=Symbol(name="PyLong_FromUInt64", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_AsInt64", visibility=None): Function(
symbol=Symbol(name="PyLong_AsInt64", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
Symbol(name="PyLong_AsUInt64", visibility=None): Function(
symbol=Symbol(name="PyLong_AsUInt64", visibility=None),
added=PyVersion(major=3, minor=14),
ifdef=None,
abi_only=False,
),
}
_MACROS: Final[dict[str, Macro]] = {
"Py_tp_dealloc": Macro(name="Py_tp_dealloc", added=PyVersion(major=3, minor=2)),
Expand Down
2 changes: 1 addition & 1 deletion codegen/stable_abi.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
139e40d95473a05804fcdff7403c1b199c68ca20def8a6b9269b5834bedf22e1
936593d5b3ef90cd0811374ab850c83d6b147ce798351e2db0561edcf8826de6
18 changes: 17 additions & 1 deletion codegen/stable_abi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# - struct_abi_kind: for `struct`, defines how much of the struct is exposed:
# - 'full-abi': All of the struct is part of the ABI, including the size
# (users may define arrays of these structs).
# Typically used for initalization, rather than at runtime.
# Typically used for initialization, rather than at runtime.
# - 'opaque': No members are part of the ABI, nor is the size. The Limited
# API only handles these via pointers. The C definition should be
# incomplete (opaque).
Expand Down Expand Up @@ -2510,3 +2510,19 @@
added = '3.14'
[function.PyIter_NextItem]
added = '3.14'
[function.PyLong_FromInt32]
added = '3.14'
[function.PyLong_FromUInt32]
added = '3.14'
[function.PyLong_AsInt32]
added = '3.14'
[function.PyLong_AsUInt32]
added = '3.14'
[function.PyLong_FromInt64]
added = '3.14'
[function.PyLong_FromUInt64]
added = '3.14'
[function.PyLong_AsInt64]
added = '3.14'
[function.PyLong_AsUInt64]
added = '3.14'

0 comments on commit 5b38768

Please sign in to comment.