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-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
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-4/+3
*
bpo-29816: Shift operation now has less opportunity to raise OverflowError. (...
Serhiy Storchaka
2017-03-30
1
-22/+48
*
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka
2017-03-30
1
-26/+21
*
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka
2017-03-19
1
-10/+14
*
bpo-29749: Update int() docstring (GH-565)
svelankar
2017-03-09
1
-1/+1
*
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...
Serhiy Storchaka
2017-03-06
1
-7/+1
*
remove 3 redundant casts in Objects/longobject.c (#445)
orenmn
2017-03-06
1
-3/+3
*
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)
Serhiy Storchaka
2017-03-05
1
-0/+6
*
Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster
Serhiy Storchaka
2017-02-02
1
-4/+7
*
Issue #20185: Converted the int class to Argument Clinic.
Serhiy Storchaka
2017-02-01
1
-135/+111
*
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-1/+2
*
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-2/+1
*
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka
2016-11-20
1
-1/+1
*
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-1/+2
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-4/+4
|
\
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-4/+4
|
|
\
|
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-4/+4
*
|
|
Issue #28621: Sped up converting int to float by reusing faster bits counting
Serhiy Storchaka
2016-11-08
1
-32/+28
*
|
|
Issue #27111: Minor simplication to long_add and long_sub fast path code. Tha...
Mark Dickinson
2016-09-17
1
-6/+2
*
|
|
Issue #27441: Remove some redundant assignments to ob_size in longobject.c. T...
Mark Dickinson
2016-09-17
1
-2/+0
*
|
|
Issue #27222: various cleanups in long_rshift. Thanks Oren Milman.
Mark Dickinson
2016-09-17
1
-11/+7
|
/
/
*
|
Issue #25221: merge from 3.5.
Mark Dickinson
2016-09-10
1
-1/+2
|
\
\
|
|
/
|
*
Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is com...
Mark Dickinson
2016-09-10
1
-1/+2
|
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
|
Issue #26331: Implement the parsing part of PEP 515.
Brett Cannon
2016-09-09
1
-37/+132
*
|
replace PY_SIZE_MAX with SIZE_MAX
Benjamin Peterson
2016-09-07
1
-1/+1
*
|
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson
2016-09-06
1
-2/+2
*
|
remove some silly defined() tests
Benjamin Peterson
2016-09-06
1
-2/+2
*
|
replace PY_LONG_LONG with long long
Benjamin Peterson
2016-09-06
1
-40/+40
*
|
require a long long data type (closes #27961)
Benjamin Peterson
2016-09-06
1
-20/+0
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-1/+1
*
|
Issue #27870: A left shift of zero by a large integer no longer attempts to a...
Mark Dickinson
2016-08-29
1
-0/+5
*
|
Issue #25402: in int-to-decimal-string conversion, reduce intermediate storag...
Mark Dickinson
2016-08-29
1
-8/+11
*
|
Issue #27214: Fix potential bug and remove useless optimization in long_inver...
Mark Dickinson
2016-08-29
1
-2/+4
*
|
Issue #27792: force int return type for modulo operations involving bools.
Mark Dickinson
2016-08-22
1
-2/+5
*
|
Untabify Objects/longobject.c.
Mark Dickinson
2016-08-21
1
-2/+2
*
|
Issue #25604: Fix minor bug in integer true division, which could
Mark Dickinson
2016-08-21
1
-2/+2
*
|
Issue #27786: Simplify x_sub()
Victor Stinner
2016-08-17
1
-3/+1
*
|
Issue #27626: Merge spelling fixes from 3.5
Martin Panter
2016-07-28
1
-2/+2
|
\
\
|
|
/
|
*
Issue #27626: Spelling fixes in docs, comments and internal names
Martin Panter
2016-07-28
1
-2/+2
*
|
Issue #27073: Removed redundant checks in long_add and long_sub.
Serhiy Storchaka
2016-06-03
1
-2/+10
[next]