COMMITS
/ Objects/longobject.c July 20, 2020
S
bpo-41342: Convert int.__round__ to Argument Clinic (GH-21549)
Serhiy Storchaka committed
June 29, 2020
I
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Inada Naoki committed
June 15, 2020
V
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner committed
N
bpo-29782: Consolidate _Py_Bit_Length() (GH-20739)
Niklas Fiekas committed
June 10, 2020
V
bpo-39465: Use _PyInterpreterState_GET() (GH-20788)
Victor Stinner committed
June 8, 2020
V
bpo-29882: Add _Py_popcount32() function (GH-20518)
Victor Stinner committed
May 29, 2020
N
bpo-29882: Add an efficient popcount method for integers (#771)
Niklas Fiekas committed
May 28, 2020
S
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
Serhiy Storchaka committed
May 27, 2020
M
bpo-37999: Fix outdated __int__ and nb_int references in comments (GH-20449)
Mark Dickinson committed
May 26, 2020
S
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka committed
May 10, 2020
S
bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611)
Sergey Fedoseev committed
May 4, 2020
D
bpo-40455: Remove gcc10 warning about x_digits (#19852)
Dong-hee Na committed
April 14, 2020
V
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner committed
April 12, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
Serhiy Storchaka committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner committed
V
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner committed
February 3, 2020
V
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner committed
January 22, 2020
January 16, 2020
N
bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)
Niklas Fiekas committed
December 17, 2019
V
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner committed
December 5, 2019
S
bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard macros (GH-15385)
Sergey Fedoseev committed
November 26, 2019
H
bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716)
HongWeipeng committed
November 21, 2019
V
bpo-38858: Allocate small integers on the heap (GH-17301)
Victor Stinner committed
October 1, 2019
V
bpo-37802: Fix a compiler warning in longobject.c (GH-16517)
Victor Stinner committed
September 18, 2019
H
bpo-35696: Simplify long_compare() (GH-16146)
HongWeipeng committed
September 12, 2019
S
bpo-37802: Slightly improve perfomance of PyLong_FromUnsigned*() (GH-15192)
Sergey Fedoseev committed
September 11, 2019
R
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)
Raymond Hettinger committed
September 10, 2019
J
bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095)
Jordon Xu committed
September 6, 2019
A
replace inline function `is_small_int` with a macro version (GH-15710)
animalize committed
August 26, 2019
V
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner committed
August 24, 2019
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 6, 2019
Z
bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860)
Zackery Spytz committed
June 3, 2019
P
bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761)
Petr Viktorin committed
June 2, 2019
P
bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13758)
Petr Viktorin committed
M
bpo-36027: Extend three-argument pow to negative second argument (GH-13266)
Mark Dickinson committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 29, 2019
I
remove unnecessary tp_dealloc (GH-13647)
Inada Naoki committed
May 19, 2019
S
bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)
Serhiy Storchaka committed
May 6, 2019
S
bpo-36793: Remove unneeded __str__ definitions. (GH-13081)
Serhiy Storchaka committed
March 18, 2019
S
bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333)
stratakis committed
February 25, 2019
S
bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952)
Serhiy Storchaka committed
February 21, 2019
S
bpo-36063: Minor performance tweak in long_divmod(). (GH-11915)
Sergey Fedoseev committed
January 22, 2019
V
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner committed
November 23, 2018
V
bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)
Victor Stinner committed
October 28, 2018
P
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152)
Pablo Galindo committed
October 26, 2018
V
bpo-35059: Convert PyObject_INIT() to function (GH-10077)
Victor Stinner committed
October 19, 2018
S
bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303)
Serhiy Storchaka committed
October 5, 2018
Z
bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-9705)
Zackery Spytz committed