summaryrefslogtreecommitdiff
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH...Zackery Spytz2019-06-071-2/+2
* bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-...Miss Islington (bot)2018-10-051-1/+1
* PyLong_FromString(): fix Coverity CID 1424951 (#4738)Victor Stinner2017-12-081-3/+2
* bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884)Serhiy Storchaka2017-12-031-3/+11
* bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376)Sanyam Khurana2017-11-131-1/+1
* bpo-31979: Simplify transforming decimals to ASCII (#4336)Serhiy Storchaka2017-11-131-12/+9
* bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...stratakis2017-11-021-30/+1
* bpo-31619: Fixed a ValueError when convert a string with large number of unde...Serhiy Storchaka2017-10-031-4/+4
* bpo-31338 (#3374)Barry Warsaw2017-09-141-4/+3
* bpo-29816: Shift operation now has less opportunity to raise OverflowError. (...Serhiy Storchaka2017-03-301-22/+48
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-301-26/+21
* bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)Serhiy Storchaka2017-03-191-10/+14
* bpo-29749: Update int() docstring (GH-565)svelankar2017-03-081-1/+1
* bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...Serhiy Storchaka2017-03-061-7/+1
* remove 3 redundant casts in Objects/longobject.c (#445)orenmn2017-03-061-3/+3
* bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)Serhiy Storchaka2017-03-061-0/+6
* Issue #29421: Make int.to_bytes() and int.from_bytes() slightly fasterSerhiy Storchaka2017-02-021-4/+7
* Issue #20185: Converted the int class to Argument Clinic.Serhiy Storchaka2017-02-011-135/+111
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-1/+2
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-2/+1
* Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-1/+1
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-1/+2
* 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 #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-4/+4
* | | Issue #28621: Sped up converting int to float by reusing faster bits countingSerhiy Storchaka2016-11-081-32/+28
* | | Issue #27111: Minor simplication to long_add and long_sub fast path code. Tha...Mark Dickinson2016-09-171-6/+2
* | | Issue #27441: Remove some redundant assignments to ob_size in longobject.c. T...Mark Dickinson2016-09-171-2/+0
* | | Issue #27222: various cleanups in long_rshift. Thanks Oren Milman.Mark Dickinson2016-09-171-11/+7
|/ /
* | 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
|\ \ | |/