COMMITS
/ Objects/longobject.c 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
September 14, 2018
R
Fix compiler warning with a type cast (GH-9300)
Raymond Hettinger committed
R
Fix-up parenthesis, organization, and NULL check (GH-9297)
Raymond Hettinger committed
L
bpo-33073: Adding as_integer_ratio to ints. (GH-8750)
Lisa Roach committed
July 26, 2018
S
bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434)
Serhiy Storchaka committed
April 30, 2018
S
bpo-33012: Fix invalid function casts for long_long. (GH-6652)
Serhiy Storchaka committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
December 7, 2017
V
PyLong_FromString(): fix Coverity CID 1424951 (#4738)
Victor Stinner committed
December 3, 2017
S
bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884)
Serhiy Storchaka committed
November 13, 2017
S
bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376)
Sanyam Khurana committed
S
bpo-31979: Simplify transforming decimals to ASCII (#4336)
Serhiy Storchaka committed
November 2, 2017
October 3, 2017
S
bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827)
Serhiy Storchaka committed
September 15, 2017
B
bpo-31338 (#3374)
Barry Warsaw committed
March 30, 2017
S
bpo-29816: Shift operation now has less opportunity to raise OverflowError. (#680)
Serhiy Storchaka committed
S
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka committed
March 19, 2017
S
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka committed
March 9, 2017
S
bpo-29749: Update int() docstring (GH-565)
svelankar committed
March 6, 2017
S
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518)
Serhiy Storchaka committed
O
remove 3 redundant casts in Objects/longobject.c (#445)
orenmn committed
March 5, 2017
S
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)
Serhiy Storchaka committed
February 2, 2017
S
Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster
Serhiy Storchaka committed
February 1, 2017
S
Issue #20185: Converted the int class to Argument Clinic.
Serhiy Storchaka committed
December 4, 2016
V
Backed out changeset b9c9691c72c5
Victor Stinner committed
December 1, 2016
V
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner committed
November 20, 2016
S
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka committed
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
November 16, 2016
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
November 8, 2016
S
Issue #28621: Sped up converting int to float by reusing faster bits counting
Serhiy Storchaka committed
September 17, 2016
M
Issue #27111: Minor simplication to long_add and long_sub fast path code. Thanks Oren Milman.
Mark Dickinson committed
M
Issue #27441: Remove some redundant assignments to ob_size in longobject.c. Thanks Oren Milman.
Mark Dickinson committed
M
Issue #27222: various cleanups in long_rshift. Thanks Oren Milman.
Mark Dickinson committed
September 10, 2016
M
Issue #25221: merge from 3.5.
Mark Dickinson committed
September 9, 2016
B
Issue #26331: Implement the parsing part of PEP 515.
Brett Cannon committed
September 7, 2016
M
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter committed
B
replace PY_SIZE_MAX with SIZE_MAX
Benjamin Peterson committed
September 6, 2016
B
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson committed
B
remove some silly defined() tests
Benjamin Peterson committed
B
replace PY_LONG_LONG with long long
Benjamin Peterson committed