summaryrefslogtreecommitdiff
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
| | |\ \ \ \
| | | * | | | Minor consistency fixes for some longobject.c exception messages:Mark Dickinson2013-08-031-4/+4
| | | * | | | Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-221-2/+4
| | | * | | | longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called onVictor Stinner2013-07-171-1/+2
| | | * | | | Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLon...Victor Stinner2013-07-171-24/+51
| | | * | | | Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macrosVictor Stinner2013-06-041-9/+4
| | | * | | | 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-18/+6
| | | |\ \ \ \
| | | | * | | | 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-151-0/+18
| | | | * | | | Issue #16761: Raise TypeError when int() called with base argument only.Serhiy Storchaka2012-12-281-3/+9
| | | | |\ \ \ \
| | | | * | | | | use more specific typeBenjamin Peterson2012-12-261-1/+1
| | | | * | | | | Test for issue16772 and redoes the previous fix to accept __index__-awareGregory P. Smith2012-12-251-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 #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 #16096: port fix from 3.3Mark Dickinson2012-10-061-3/+2
| | | | |\ \ \ \ \ \ \
| | | | * | | | | | | | long_to_decimal_string_internal() doesn't need to write the final NULL characterVictor Stinner2012-10-041-1/+0
* | | | | | | | | | | | fix c89 declaration orderBenjamin Peterson2014-03-141-1/+2
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | don't do pointer arithmetic with signed numbersBenjamin Peterson2014-03-141-1/+2
* | | | | | | | | | | Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e.Serhiy Storchaka2013-12-141-9/+0
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-111-104/+111
|/ / / / / / / / /
* | | | | | | | | Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-4/+10
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-50/+50
|/ / / / / / /
* | | | | | | Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-031-27/+62
|/ / / / / /
* | | | | | Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-148/+293
|\ \ \ \ \ \
| * \ \ \ \ \ Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-148/+293
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | |
| | * | | | | Issue #16761: Raise TypeError when int() called with base argument only.Serhiy Storchaka2012-12-281-148/+293
| | |\ \ \ \ \ | | | | |_|_|/ | | | |/| | |
| | | * | | | Issue #16277: merge fix from 3.2Mark Dickinson2012-10-181-148/+293
| | | |\ \ \ \ | | | | | |_|/ | | | | |/| |
| | | | * | | Issue #14783: Merge changes from 3.2.Chris Jerdonek2012-10-071-148/+293
| | | | |\ \ \ | | | | | | |/ | | | | | |/|
| | | | | * | Issue #16096: Fix signed overflow in Objects/longobject.c. Thanks Serhiy Sto...Mark Dickinson2012-10-061-3/+2
| | | | | |/
| | | | | * Issue 15959: Merge from 3.2.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-145/+291
| | | | | |\ \
| | | | | | * | 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-261-0/+2
| | | | | | * | Issue #14630: Merge fix from 3.2.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