| Commit message (Expand) | Author | Age | Files | Lines |
* | [2.7] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH... | Zackery Spytz | 2019-06-07 | 1 | -1/+1 |
|
|
* | bpo-16055: Fixes incorrect error text for int('1', base=1000) (#6980) | Victor Stinner | 2018-05-18 | 1 | -1/+1 |
|
|
* | consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563) | Benjamin Peterson | 2017-09-14 | 1 | -40/+39 |
|
|
* | fix refleak in the shift-by-zero case (#27870) | Benjamin Peterson | 2016-12-03 | 1 | -5/+6 |
|
|
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Martin Panter | 2016-09-07 | 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 #25604: Fix bug in integer true division that could have resulted in of... | Mark Dickinson | 2016-08-21 | 1 | -2/+2 |
|
|
* | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -2/+2 |
|
|
* | Issue #24731: Fixed crash on converting objects with special methods | Serhiy Storchaka | 2015-11-25 | 1 | -1/+1 |
|
|
* | Issue #19171: speed some cases of 3-argument long pow(). | Tim Peters | 2013-10-05 | 1 | -4/+10 |
|
|
* | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 1 | -0/+18 |
|
|
* | Issue #16761: Raise TypeError when int() or long() called with base argument ... | Serhiy Storchaka | 2012-12-28 | 1 | -1/+7 |
|
|
* | Issue #14783: Backport changes from 3.2. | Chris Jerdonek | 2012-10-08 | 1 | -6/+12 |
|
|
* | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|
|
* | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
|
|
* | Wrap multiline macros in a 'do {} while(0)', for safety. | Mark Dickinson | 2010-05-09 | 1 | -37/+43 |
|
|
* | Post-detabification cleanup: whitespace fixes and long line rewraps only. | Mark Dickinson | 2010-05-09 | 1 | -159/+155 |
|
|
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -3374/+3374 |
|
|
* | Issue #8659: Remove redundant ABS calls. Thanks Daniel Stutzbach. | Mark Dickinson | 2010-05-08 | 1 | -5/+2 |
|
|
* | Issue #8328: Silence Visual Studio warnings. | Stefan Krah | 2010-04-07 | 1 | -6/+6 |
|
|
* | Silence a 'comparison between signed and unsigned integer expressions' gcc wa... | Mark Dickinson | 2010-04-06 | 1 | -1/+1 |
|
|
* | Issue #8259: Get rid of 'outrageous left shift count' error when | Mark Dickinson | 2010-04-06 | 1 | -14/+6 |
|
|
* | Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a | Mark Dickinson | 2010-01-30 | 1 | -0/+104 |
|
|
* | Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble | Mark Dickinson | 2010-01-02 | 1 | -221/+146 |
|
|
* | Issue #1811: Improve accuracy and consistency of true division for integers. | Mark Dickinson | 2009-12-27 | 1 | -31/+252 |
|
|
* | Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. | Mark Dickinson | 2009-12-21 | 1 | -31/+101 |
|
|
* | Issue #1087418: Small performance boost for bitwise operations on longs. | Mark Dickinson | 2009-10-25 | 1 | -66/+100 |
|
|
* | Style/consistency/nano-optimization nit: replace occurrences of | Mark Dickinson | 2009-09-28 | 1 | -6/+6 |
|
|
* | Silence MSVC compiler warnings. | Mark Dickinson | 2009-09-21 | 1 | -2/+3 |
|
|
* | Issue #6713: Improve performance of str(n) and repr(n) for integers n | Mark Dickinson | 2009-09-16 | 1 | -0/+119 |
|
|
* | Fix potential signed-overflow bug in _PyLong_Format; also fix | Mark Dickinson | 2009-09-13 | 1 | -9/+11 |
|
|
* | Remove redundant assignment | Mark Dickinson | 2009-09-06 | 1 | -1/+0 |
|
|
* | Remove unnecessary use of context for long getters. | Mark Dickinson | 2009-05-02 | 1 | -10/+15 |
|
|
* | Issue #3166: Make long -> float (and int -> float) conversions | Mark Dickinson | 2009-04-20 | 1 | -15/+152 |
|
|
* | sys.long_info attributes should be ints, not longs | Mark Dickinson | 2009-04-02 | 1 | -2/+4 |
|
|
* | Issue #5512: speed up the long division algorithm for Python longs. | Mark Dickinson | 2009-03-23 | 1 | -94/+152 |
|
|
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. | Mark Dickinson | 2009-03-20 | 1 | -0/+49 |
|
|
* | Replace long with twodigits, to avoid depending | Mark Dickinson | 2009-02-25 | 1 | -1/+1 |
|
|
* | A few more minor fixes in longobject.c | Mark Dickinson | 2009-02-15 | 1 | -5/+4 |
|
|
* | Issue #5260: Various portability and standards compliance fixes, optimizations | Mark Dickinson | 2009-02-15 | 1 | -46/+35 |
|
|
* | Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for | Mark Dickinson | 2009-02-10 | 1 | -1/+1 |
|
|
* | Fix comment. | Mark Dickinson | 2009-01-26 | 1 | -3/+3 |
|
|
* | Fix undefined behaviour (left shift of negative value) in long_hash. Also, | Mark Dickinson | 2009-01-26 | 1 | -9/+10 |
|
|
* | No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large... | Mark Dickinson | 2009-01-25 | 1 | -1/+1 |
|
|
* | Issue #4393: fix 3 classes of potential portability problems in longobject.c: | Mark Dickinson | 2009-01-24 | 1 | -23/+20 |
|
|
* | Issue #3439: add bit_length method to int and long. | Mark Dickinson | 2008-12-17 | 1 | -0/+71 |
|
|
* | Issue #1481296: (again!) Make conversion of a float NaN to an int or | Mark Dickinson | 2008-08-04 | 1 | -2/+4 |
|
|
* | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 1 | -0/+2 |
|
|
* | Added additional __sizeof__ implementations and addressed comments made in | Robert Schuppenies | 2008-07-10 | 1 | -2/+2 |
|
|
* | Revert 64424, 64438, and 64439. | Raymond Hettinger | 2008-06-24 | 1 | -7/+0 |
|
|