| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-40268: Include explicitly pycore_interp.h (GH-19505) | Victor Stinner | 2020-04-14 | 1 | -1/+2 |
|
|
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (... | Serhiy Storchaka | 2020-04-12 | 1 | -1/+1 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -1/+1 |
|
|
* | bpo-39573: Use Py_SET_SIZE() function (GH-18402) | Victor Stinner | 2020-02-07 | 1 | -31/+37 |
|
|
* | bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) | Victor Stinner | 2020-02-07 | 1 | -4/+4 |
|
|
* | bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) | Victor Stinner | 2020-02-03 | 1 | -10/+0 |
|
|
* | closes bpo-39415: Remove unused codes from longobject.c complexobject.c float... | Dong-hee Na | 2020-01-22 | 1 | -11/+0 |
|
|
* | bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866) | Niklas Fiekas | 2020-01-16 | 1 | -29/+9 |
|
|
* | bpo-38858: Small integer per interpreter (GH-17315) | Victor Stinner | 2019-12-17 | 1 | -31/+28 |
|
|
* | bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard... | Sergey Fedoseev | 2019-12-05 | 1 | -5/+5 |
|
|
* | bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716) | HongWeipeng | 2019-11-26 | 1 | -7/+9 |
|
|
* | bpo-38858: Allocate small integers on the heap (GH-17301) | Victor Stinner | 2019-11-21 | 1 | -36/+19 |
|
|
* | bpo-37802: Fix a compiler warning in longobject.c (GH-16517) | Victor Stinner | 2019-10-01 | 1 | -1/+1 |
|
|
* | bpo-35696: Simplify long_compare() (GH-16146) | HongWeipeng | 2019-09-18 | 1 | -18/+18 |
|
|
* | bpo-37802: Slightly improve perfomance of PyLong_FromUnsigned*() (GH-15192) | Sergey Fedoseev | 2019-09-12 | 1 | -77/+42 |
|
|
* | bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) | Raymond Hettinger | 2019-09-11 | 1 | -1/+1 |
|
|
* | bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095) | Jordon Xu | 2019-09-10 | 1 | -2/+2 |
|
|
* | replace inline function `is_small_int` with a macro version (GH-15710) | animalize | 2019-09-06 | 1 | -13/+9 |
|
|
* | Make PyXXX_Fini() functions private (GH-15531) | Victor Stinner | 2019-08-26 | 1 | -1/+1 |
|
|
* | bpo-37812: Convert CHECK_SMALL_INT macro to a function so the return is expli... | Greg Price | 2019-08-24 | 1 | -11/+25 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -2/+1 |
|
|
* | bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) | Zackery Spytz | 2019-06-06 | 1 | -2/+2 |
|
|
* | bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761) | Petr Viktorin | 2019-06-03 | 1 | -1/+1 |
|
|
* | bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13... | Petr Viktorin | 2019-06-02 | 1 | -1/+1 |
|
|
* | bpo-36027: Extend three-argument pow to negative second argument (GH-13266) | Mark Dickinson | 2019-06-02 | 1 | -12/+118 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -2/+2 |
|
|
* | remove unnecessary tp_dealloc (GH-13647) | Inada Naoki | 2019-05-29 | 1 | -7/+1 |
|
|
* | bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416) | Serhiy Storchaka | 2019-05-19 | 1 | -28/+75 |
|
|
* | bpo-36793: Remove unneeded __str__ definitions. (GH-13081) | Serhiy Storchaka | 2019-05-06 | 1 | -1/+1 |
|
|
* | bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333) | stratakis | 2019-03-18 | 1 | -4/+2 |
|
|
* | bpo-36048: Use __index__() instead of __int__() for implicit conversion if av... | Serhiy Storchaka | 2019-02-25 | 1 | -9/+76 |
|
|
* | bpo-36063: Minor performance tweak in long_divmod(). (GH-11915) | Sergey Fedoseev | 2019-02-21 | 1 | -2/+2 |
|
|
* | bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) | Victor Stinner | 2019-01-22 | 1 | -1/+2 |
|
|
* | bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) | Victor Stinner | 2018-11-23 | 1 | -2/+2 |
|
|
* | bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-1... | Pablo Galindo | 2018-10-28 | 1 | -3/+3 |
|
|
* | bpo-35059: Convert PyObject_INIT() to function (GH-10077) | Victor Stinner | 2018-10-26 | 1 | -2/+2 |
|
|
* | bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) | Serhiy Storchaka | 2018-10-19 | 1 | -6/+1 |
|
|
* | bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-... | Zackery Spytz | 2018-10-05 | 1 | -1/+1 |
|
|
* | Fix compiler warning with a type cast (GH-9300) | Raymond Hettinger | 2018-09-14 | 1 | -1/+1 |
|
|
* | Fix-up parenthesis, organization, and NULL check (GH-9297) | Raymond Hettinger | 2018-09-14 | 1 | -6/+11 |
|
|
* | bpo-33073: Adding as_integer_ratio to ints. (GH-8750) | Lisa Roach | 2018-09-14 | 1 | -0/+31 |
|
|
* | bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic.... | Serhiy Storchaka | 2018-07-26 | 1 | -0/+96 |
|
|
* | bpo-33012: Fix invalid function casts for long_long. (GH-6652) | Serhiy Storchaka | 2018-04-30 | 1 | -17/+25 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -10/+10 |
|
|
* | PyLong_FromString(): fix Coverity CID 1424951 (#4738) | Victor Stinner | 2017-12-07 | 1 | -3/+2 |
|
|
* | bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884) | Serhiy Storchaka | 2017-12-03 | 1 | -3/+11 |
|
|
* | bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376) | Sanyam Khurana | 2017-11-13 | 1 | -1/+1 |
|
|
* | bpo-31979: Simplify transforming decimals to ASCII (#4336) | Serhiy Storchaka | 2017-11-13 | 1 | -12/+9 |
|
|
* | bpo-23699: Use a macro to reduce boilerplate code in rich comparison function... | stratakis | 2017-11-02 | 1 | -30/+1 |
|
|
* | bpo-31619: Fixed a ValueError when convert a string with large number of unde... | Serhiy Storchaka | 2017-10-03 | 1 | -4/+4 |
|
|