summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* Close #17694: Add minimum length to _PyUnicodeWriterVictor Stinner2013-04-171-1/+1
* Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-2/+2
|\
| * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-2/+2
| |\
| | * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-2/+2
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+18
| |\ \ | | |/
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+18
* | | Issue #16772: in int(x, base), non-integer bases must have an __index__ method.Mark Dickinson2013-01-271-5/+0
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-141-0/+18
* | | Issue #16761: Raise TypeError when int() called with base argument only.Serhiy Storchaka2012-12-281-3/+9
|\ \ \ | |/ /
| * | Issue #16761: Raise TypeError when int() called with base argument only.Serhiy Storchaka2012-12-281-2/+8
| |\ \ | | |/
| | * Issue #16761: Raise TypeError when int() called with base argument only.Serhiy Storchaka2012-12-281-2/+8
* | | use more specific typeBenjamin Peterson2012-12-261-1/+1
* | | Test for issue16772 and redoes the previous fix to accept __index__-awareGregory P. Smith2012-12-261-4/+3
* | | Fixes issue #16772: int() constructor second argument (base) must be an int.Gregory P. Smith2012-12-251-0/+5
* | | Issue 16280: Drop questionable special-casing of null pointer in PyLong_FromV...Mark Dickinson2012-10-181-6/+0
* | | Issue #16277: merge fix from 3.3Mark Dickinson2012-10-181-0/+8
|\ \ \ | |/ /
| * | Issue #16277: merge fix from 3.2Mark Dickinson2012-10-181-0/+8
| |\ \ | | |/
| | * Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= ...Mark Dickinson2012-10-181-0/+8
* | | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-171-6/+2
* | | Issue #14783: Merge changes from 3.3.Chris Jerdonek2012-10-071-6/+13
|\ \ \ | |/ /
| * | Issue #14783: Merge changes from 3.2.Chris Jerdonek2012-10-071-6/+13
| |\ \ | | |/
| | * Issue #14783: Improve int() docstring and also str(), range(), and slice().Chris Jerdonek2012-10-071-6/+13
* | | Issue #16096: port fix from 3.3Mark Dickinson2012-10-061-3/+2
|\ \ \ | |/ /
| * | Issue #16096: Fix signed overflow in Objects/longobject.c. Thanks Serhiy Sto...Mark Dickinson2012-10-061-3/+2
* | | long_to_decimal_string_internal() doesn't need to write the final NULL characterVictor Stinner2012-10-041-1/+0
|/ /
* | Issue 15959: Merge from 3.2.Mark Dickinson2012-09-201-1/+1
|\ \ | |/
| * Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Sto...Mark Dickinson2012-09-201-1/+1
* | Fix out of bounds read in long_new() for empty bytes with an explicit base. i...Christian Heimes2012-09-121-2/+2
|\ \ | |/
| * Fix out of bounds read in long_new() for empty bytes with an explicit base. i...Christian Heimes2012-09-121-2/+2
* | Fixed resource leak to scratch when _PyUnicodeWriter_Prepare failsChristian Heimes2012-09-101-1/+3
* | Issue #14744: Fix compilation on WindowsVictor Stinner2012-05-291-2/+2
* | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ...Victor Stinner2012-05-291-88/+219
* | long_to_decimal_string() and _PyLong_Format() check the consistency of newlyVictor Stinner2012-04-251-0/+2
* | Issue #14630: Merge fix from 3.2.Mark Dickinson2012-04-201-3/+1
|\ \ | |/
| * Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of a...Mark Dickinson2012-04-201-3/+1
* | Issue #14339: Improve speed of bin, oct and hex builtins. Patch by Serhiy St...Mark Dickinson2012-04-201-26/+31
* | Issue #12965: Fix some inaccurate comments in Objects/longobject.c. Thanks S...Mark Dickinson2011-10-231-15/+23
* | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-281-2/+1
* | Implement PEP 393.Martin v. Löwis2011-09-281-44/+38
* | Merge fix for issue #12963.Stefan Krah2011-09-121-3/+3
|\ \ | |/
| * Issue #12963: PyLong_AsSize_t() now returns (size_t)-1 in all error cases.Stefan Krah2011-09-121-3/+3
* | Issue #12909: Make PyLong_As* functions consistent in their use of exceptions.Nadeem Vawda2011-09-071-2/+10
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-6/+3
|/
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
* | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-3334/+3334
| * Issue #8328: Silence Visual Studio warnings.Stefan Krah2010-04-071-2/+2
| * Merged revisions 78918,78920 via svnmerge fromMark Dickinson2010-04-061-5/+20