diff options
author | RUANG (James Roy) <longjinyii@outlook.com> | 2024-11-14 14:04:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-14 14:04:38 (GMT) |
commit | 1e3497e745d6559d30dbb65c914d19c759d60dc5 (patch) | |
tree | d530e6cbbc7dffaa30c209fc1f80de2b0d60fee3 /Doc/data | |
parent | 3966d8d626fc9adcdf0663024d4ae6e6be7ef858 (diff) | |
download | cpython-1e3497e745d6559d30dbb65c914d19c759d60dc5.zip cpython-1e3497e745d6559d30dbb65c914d19c759d60dc5.tar.gz cpython-1e3497e745d6559d30dbb65c914d19c759d60dc5.tar.bz2 |
gh-126061: add new functions to `refcounts.dat` (#126788)
Diffstat (limited to 'Doc/data')
-rw-r--r-- | Doc/data/refcounts.dat | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index 65d48f8..6bfcc19 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -1284,6 +1284,19 @@ PyLong_FromUnsignedLong:unsignedlong:v:: PyLong_FromVoidPtr:PyObject*::+1: PyLong_FromVoidPtr:void*:p:: +PyLong_IsPositive:int::: +PyLong_IsPositive:PyObject*:obj:0: + +PyLong_IsNegative:int::: +PyLong_IsNegative:PyObject*:obj:0: + +PyLong_IsZero:int::: +PyLong_IsZero:PyObject*:obj:0: + +PyLong_GetSign:int::: +PyLong_GetSign:PyObject*:v:0: +PyLong_GetSign:int*:sign:: + PyMapping_Check:int::: PyMapping_Check:PyObject*:o:0: |