summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi/test_long.py
Commit message (Expand)AuthorAgeFilesLines
* gh-129149: Add fast path for medium-sized integers in `PyLong_FromSsize_t()` ...Chris Eibl2025-03-131-2/+2
* gh-130824: Add tests for `NULL` in `PyLong_*AndOverflow` functions (GH-130828)Peter Bierma2025-03-051-3/+2
* gh-102471, PEP 757: Add PyLong import and export API (#121339)Victor Stinner2024-12-131-0/+91
* gh-126061: Add PyLong_IsPositive/Zero/Negative() functions (#126065)RUANG (James Roy)2024-11-121-0/+45
* gh-121485: Always use 64-bit integers for integers bits count (GH-121486)Serhiy Storchaka2024-08-301-0/+12
* gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390)Victor Stinner2024-08-281-0/+25
* Refactor test_capi.test_long (GH-122113)Serhiy Storchaka2024-07-221-179/+66
* gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118)Steve Dower2024-06-281-2/+9
* gh-116560: Add PyLong_GetSign() public function (#116561)Sergey B Kirpichev2024-06-031-0/+16
* gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...Steve Dower2024-04-051-7/+111
* gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platf...Serhiy Storchaka2024-03-201-0/+28
* gh-116417: Move limited C API long.c tests to _testlimitedcapi (#117001)Victor Stinner2024-03-191-20/+21
* gh-111140: Improve PyLong_AsNativeBytes API doc example & improve the test (#...Gregory P. Smith2024-02-221-5/+25
* gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...Steve Dower2024-02-121-0/+145
* gh-110628: Add tests for PyLong C API (GH-110629)Serhiy Storchaka2023-10-141-17/+376
* gh-108444: Add PyLong_AsInt() public function (#108445)Victor Stinner2023-08-241-0/+30
* GH-101291: Add low level, unstable API for pylong (GH-101685)Mark Shannon2023-05-211-0/+39