0
0
mirror of https://github.com/python/cpython.git synced 2024-11-25 09:39:56 +01:00
cpython/Modules/_testlimitedcapi
Victor Stinner 4c6dca8292
gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390)
Add new functions to convert C <stdint.h> numbers from/to Python int:

* PyLong_FromInt32()
* PyLong_FromUInt32()
* PyLong_FromInt64()
* PyLong_FromUInt64()
* PyLong_AsInt32()
* PyLong_AsUInt32()
* PyLong_AsInt64()
* PyLong_AsUInt64()
2024-08-28 10:16:13 +00:00
..
clinic
abstract.c
bytearray.c
bytes.c
complex.c
dict.c
eval.c
float.c
heaptype_relative.c
list.c
long.c gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390) 2024-08-28 10:16:13 +00:00
object.c
parts.h gh-111495: Add tests for PyTuple C API (#118757) 2024-08-26 11:57:52 +02:00
pyos.c
set.c
sys.c
testcapi_long.h
tuple.c gh-111495: Add tests for PyTuple C API (#118757) 2024-08-26 11:57:52 +02:00
unicode.c
util.h
vectorcall_limited.c