summaryrefslogtreecommitdiff
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-4/+4
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-4/+4
* | Issue #25221: merge from 3.5.Mark Dickinson2016-09-101-1/+2
|\ \ | |/
| * Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is com...Mark Dickinson2016-09-101-1/+2
| * Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Martin Panter2016-09-071-1/+1
* | Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-091-37/+132
* | replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-071-1/+1
* | replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-2/+2
* | remove some silly defined() testsBenjamin Peterson2016-09-061-2/+2
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-40/+40
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-051-20/+0
* | Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-1/+1
* | Issue #27870: A left shift of zero by a large integer no longer attempts to a...Mark Dickinson2016-08-291-0/+5
* | Issue #25402: in int-to-decimal-string conversion, reduce intermediate storag...Mark Dickinson2016-08-291-8/+11
* | Issue #27214: Fix potential bug and remove useless optimization in long_inver...Mark Dickinson2016-08-291-2/+4
* | Issue #27792: force int return type for modulo operations involving bools.Mark Dickinson2016-08-221-2/+5
* | Untabify Objects/longobject.c.Mark Dickinson2016-08-211-2/+2
* | Issue #25604: Fix minor bug in integer true division, which couldMark Dickinson2016-08-211-2/+2
* | Issue #27786: Simplify x_sub()Victor Stinner2016-08-171-3/+1
* | Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-281-2/+2
|\ \ | |/
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-2/+2
* | Issue #27073: Removed redundant checks in long_add and long_sub.Serhiy Storchaka2016-06-041-2/+10
* | Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.Serhiy Storchaka2016-05-121-21/+3
|\ \ | |/
| * Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.Serhiy Storchaka2016-05-121-21/+3
* | longobject.c: fix compilation warning on Windows 64-bitVictor Stinner2016-03-231-1/+1
* | Issues #26289 and #26315: Optimize floor/modulo div for single-digit longsYury Selivanov2016-02-111-0/+79
* | Issue #26288: Fix commentYury Selivanov2016-02-061-3/+3
* | Issue #26288: Optimize PyLong_AsDouble.Yury Selivanov2016-02-051-0/+7
* | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-1/+1
|\ \ | |/
| * Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-44/+248
| |\
| * | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-1/+1
* | | Fix compiler warnings (uninitialized variables), false alarms in factVictor Stinner2015-10-141-4/+2
* | | Fix long_format_binary()Victor Stinner2015-10-141-1/+1
* | | Issue #25349: Optimize bytes % intVictor Stinner2015-10-091-27/+93
| |/ |/|
* | Issue #24999: In longobject.c, use two shifts instead of ">> 2*PyLong_SHIFT" toVictor Stinner2015-09-191-4/+6
* | Issue #22486: Added the math.gcd() function. The fractions.gcd() function no...Serhiy Storchaka2015-05-131-0/+205
* | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-3/+1
* | Removed redundant casts to `char *`.Serhiy Storchaka2014-09-281-1/+1
* | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-2/+2
* | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner2014-05-141-37/+36
* | Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeErr...Mark Dickinson2014-04-111-1/+1
|/
* merge 3.3Benjamin Peterson2014-03-141-90/+108
|\
| * merge 3.3Benjamin Peterson2014-03-141-1/+2
| |\
| * \ Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-111-104/+111
| |\ \
| * | | Silence expression result unused warnings with clang.Christian Heimes2013-12-041-1/+1
| * | | Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-8/+8
| * | | Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-81/+90
| |\ \ \
| | * \ \ Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-50/+50
| | |\ \ \
| | * | | | Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-12/+12
| | * | | | Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-031-69/+78
| | |\ \ \ \