| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-126868: Add freelist for compact ints to `_PyLong_New` (#128181) | Pieter Eendebak | 2024-12-26 | 1 | -12/+18 |
|
|
* | gh-102471, PEP 757: Add PyLong import and export API (#121339) | Victor Stinner | 2024-12-13 | 1 | -0/+120 |
|
|
* | gh-126868: Add freelist for compact int objects (GH-126865) | Pieter Eendebak | 2024-12-13 | 1 | -19/+59 |
|
|
* | gh-126061: Add PyLong_IsPositive/Zero/Negative() functions (#126065) | RUANG (James Roy) | 2024-11-12 | 1 | -0/+33 |
|
|
* | GH-126547: Pre-assign version numbers for a few common classes (GH-126551) | Mark Shannon | 2024-11-08 | 1 | -0/+1 |
|
|
* | Use _PyLong_GetOne() and _PyLong_GetZero() in long_invmod() (#125044) | Victor Stinner | 2024-10-07 | 1 | -11/+2 |
|
|
* | gh-111178: Fix function signatures in longobject.c (#124895) | Victor Stinner | 2024-10-02 | 1 | -100/+139 |
|
|
* | gh-123497: New limit for Python integers on 64-bit platforms (GH-123724) | Serhiy Storchaka | 2024-09-29 | 1 | -129/+67 |
|
|
* | gh-121485: Always use 64-bit integers for integers bits count (GH-121486) | Serhiy Storchaka | 2024-08-30 | 1 | -73/+52 |
|
|
* | gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390) | Victor Stinner | 2024-08-28 | 1 | -0/+66 |
|
|
* | gh-111178: Avoid calling long_hash from incompatible pointer type (GH-122972) | Bénédikt Tran | 2024-08-14 | 1 | -2/+3 |
|
|
* | gh-121905: Consistently use "floating-point" instead of "floating point" (GH-... | Serhiy Storchaka | 2024-07-19 | 1 | -1/+1 |
|
|
* | gh-121153: Fix some errors with use of _PyLong_CompactValue() (GH-121154) | Serhiy Storchaka | 2024-07-13 | 1 | -13/+55 |
|
|
* | gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118) | Steve Dower | 2024-06-28 | 1 | -1/+5 |
|
|
* | gh-120593: Fix const qualifier in _PyLong_CompactValue() (#121053) | Victor Stinner | 2024-06-26 | 1 | -2/+2 |
|
|
* | gh-120080: Accept ``None`` as a valid argument for direct call of the ``int._... | Kirill Podoprigora | 2024-06-07 | 1 | -3/+3 |
|
|
* | gh-119057: Use better error messages for zero division (#119066) | Nikita Sobolev | 2024-06-03 | 1 | -3/+2 |
|
|
* | gh-116560: Add PyLong_GetSign() public function (#116561) | Sergey B Kirpichev | 2024-06-03 | 1 | -0/+12 |
|
|
* | gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619) | Sergey B Kirpichev | 2024-05-29 | 1 | -2/+2 |
|
|
* | Tiny fix: Update link for HAC algorithm (gh-118546) | Ayato Hayashi | 2024-05-23 | 1 | -2/+2 |
|
|
* | fix formatting of literal in docstring of int.from_bytes and int.to_bytes (#1... | Jens Hedegaard Nielsen | 2024-04-18 | 1 | -4/+4 |
|
|
* | gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne... | Steve Dower | 2024-04-05 | 1 | -24/+82 |
|
|
* | gh-110819: Fix ‘kind’ may be used uninitialized warning in `longobject` (... | Nikita Sobolev | 2024-03-12 | 1 | -28/+35 |
|
|
* | gh-115827: Fix compile warning in `longobject.c` (#115828) | Nikita Sobolev | 2024-02-22 | 1 | -1/+1 |
|
|
* | gh-115391: Fix compiler warning in `Objects/longobject.c` (GH-115368) | Kirill Podoprigora | 2024-02-13 | 1 | -1/+1 |
|
|
* | gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun... | Steve Dower | 2024-02-12 | 1 | -8/+208 |
|
|
* | gh-114050: Fix crash when more than two arguments are passed to int() (GH-114... | kcatss | 2024-01-18 | 1 | -1/+1 |
|
|
* | GH-109369 Add vectorcall to `PyLong_Type` (GH-111642) | Mark Shannon | 2023-11-02 | 1 | -0/+25 |
|
|
* | gh-108765: Python.h no longer includes <ctype.h> (#108831) | Victor Stinner | 2023-09-03 | 1 | -4/+2 |
|
|
* | gh-108444: Add PyLong_AsInt() public function (#108445) | Victor Stinner | 2023-08-24 | 1 | -1/+1 |
|
|
* | GH-84436: Skip refcounting for known immortals (GH-107605) | Brandt Bucher | 2023-08-04 | 1 | -3/+2 |
|
|
* | gh-102509: Start initializing `ob_digit` of `_PyLongValue` (GH-102510) | Illia Volochii | 2023-07-28 | 1 | -0/+3 |
|
|
* | GH-101291: Add low level, unstable API for pylong (GH-101685) | Mark Shannon | 2023-05-21 | 1 | -0/+14 |
|
|
* | gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte... | Eric Snow | 2023-05-02 | 1 | -7/+4 |
|
|
* | gh-84436: Immortalize in _PyStructSequence_InitBuiltinWithFlags() (gh-104054) | Eric Snow | 2023-05-01 | 1 | -2/+2 |
|
|
* | gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940) | Eric Snow | 2023-04-27 | 1 | -12/+2 |
|
|
* | gh-84436: Implement Immortal Objects (gh-19474) | Eddie Elizondo | 2023-04-22 | 1 | -3/+23 |
|
|
* | GH-101291: Rearrange the size bits in PyLongObject (GH-102464) | Mark Shannon | 2023-03-22 | 1 | -373/+321 |
|
|
* | gh-101825: Clarify that as_integer_ratio() output is always normalized (#101843) | Sergey B Kirpichev | 2023-02-27 | 1 | -4/+3 |
|
|
* | gh-101266: Fix __sizeof__ for subclasses of int (#101394) | Mark Dickinson | 2023-02-05 | 1 | -7/+4 |
|
|
* | GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa... | Mark Shannon | 2023-01-30 | 1 | -178/+178 |
|
|
* | gh-101037: Fix potential memory underallocation for zeros of int subtypes (#1... | Mark Dickinson | 2023-01-21 | 1 | -0/+5 |
|
|
* | gh-100637: Fix int and bool __sizeof__ calculation to include the 1 element o... | Ionite | 2023-01-02 | 1 | -1/+4 |
|
|
* | gh-100268: Add is_integer method to int (#100439) | Shantanu | 2022-12-24 | 1 | -0/+14 |
|
|
* | clarify the 4300-digit limit on int-str conversion (#100175) | Ned Batchelder | 2022-12-12 | 1 | -2/+2 |
|
|
* | gh-98724: Fix warnings on Py_SETREF() usage (#99781) | Victor Stinner | 2022-11-25 | 1 | -1/+1 |
|
|
* | gh-99537: Use Py_SETREF() function in longobject C code (#99655) | Victor Stinner | 2022-11-22 | 1 | -49/+24 |
|
|
* | gh-99300: Use Py_NewRef() in Objects/ directory (#99351) | Victor Stinner | 2022-11-10 | 1 | -31/+20 |
|
|
* | Correct some typos in comments (GH-98194) | jonasdlindner | 2022-11-06 | 1 | -1/+1 |
|
|
* | gh-90716: Fix pylong_int_from_string() refleak (#99094) | Victor Stinner | 2022-11-04 | 1 | -0/+1 |
|
|