index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
longobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
1
-8/+11
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-1/+2
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
1
-5/+5
*
bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)
Victor Stinner
2021-02-19
1
-1/+1
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003)
Victor Stinner
2020-10-27
1
-18/+0
*
bpo-42161: Add _PyLong_GetZero() and _PyLong_GetOne() (GH-22993)
Victor Stinner
2020-10-26
1
-23/+14
*
Revert "bpo-26680: Incorporate is_integer in all built-in and standard librar...
Raymond Hettinger
2020-10-07
1
-14/+0
*
bpo-26680: Incorporate is_integer in all built-in and standard library numeri...
Robert Smallshire
2020-10-01
1
-0/+14
*
bpo-41342: Convert int.__round__ to Argument Clinic (GH-21549)
Serhiy Storchaka
2020-07-20
1
-7/+15
*
bpo-41123: Remove PyLong_FromUnicode() (GH-21204)
Inada Naoki
2020-06-29
1
-11/+0
*
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner
2020-06-15
1
-1/+3
*
bpo-29782: Consolidate _Py_Bit_Length() (GH-20739)
Niklas Fiekas
2020-06-15
1
-9/+16
*
bpo-39465: Use _PyInterpreterState_GET() (GH-20788)
Victor Stinner
2020-06-10
1
-2/+2
*
bpo-29882: Add _Py_popcount32() function (GH-20518)
Victor Stinner
2020-06-08
1
-8/+7
*
bpo-29882: Add an efficient popcount method for integers (#771)
Niklas Fiekas
2020-05-29
1
-0/+70
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-6/+6
*
bpo-37999: Fix outdated __int__ and nb_int references in comments (GH-20449)
Mark Dickinson
2020-05-27
1
-8/+8
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-122/+5
*
bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611)
Sergey Fedoseev
2020-05-10
1
-2/+16
*
bpo-40455: Remove gcc10 warning about x_digits (#19852)
Dong-hee Na
2020-05-04
1
-4/+3
*
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
[next]