| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods | Benjamin Peterson | 2008-06-11 | 1 | -3/+0 |
|
|
* | Merged revisions 63856-63857,63859-63860 via svnmerge from | Martin v. Löwis | 2008-06-04 | 1 | -0/+13 |
|
|
* | Refactor and clean up str.format() code (and helpers) in advance of optimizat... | Eric Smith | 2008-05-30 | 1 | -6/+7 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -2/+2 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -3/+3 |
|
|
* | Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-... | Christian Heimes | 2008-04-19 | 1 | -6/+19 |
|
|
* | Merged revisions 62380,62382-62383 via svnmerge from | Christian Heimes | 2008-04-19 | 1 | -0/+12 |
|
|
* | PyLong_FromSsize_t was incorrect when sizeof(size_t) > sizeof(long); | Mark Dickinson | 2008-04-15 | 1 | -12/+53 |
|
|
* | Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from | Christian Heimes | 2008-03-28 | 1 | -5/+5 |
|
|
* | Merged revisions 61964-61979 via svnmerge from | Christian Heimes | 2008-03-28 | 1 | -5/+5 |
|
|
* | Get the ref counting for static allocated longs right. | Christian Heimes | 2008-02-01 | 1 | -9/+7 |
|
|
* | Fixed multiple reinitialization of the Python interpreter. The small int list... | Christian Heimes | 2008-01-31 | 1 | -23/+36 |
|
|
* | Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowed | Facundo Batista | 2008-01-19 | 1 | -2/+0 |
|
|
* | long(float('nan')) raises an OverflowError as discussed on the mailing list a... | Christian Heimes | 2008-01-15 | 1 | -1/+3 |
|
|
* | Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ... | Christian Heimes | 2008-01-04 | 1 | -1/+1 |
|
|
* | Merged revisions 59680-59695 via svnmerge from | Christian Heimes | 2008-01-04 | 1 | -0/+3 |
|
|
* | Drop _PyLong_FitsInLong. Fixes #1666. | Martin v. Löwis | 2007-12-20 | 1 | -13/+0 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -137/+137 |
|
|
* | Removed PyInt_GetMax and sys.maxint | Christian Heimes | 2007-12-04 | 1 | -6/+0 |
|
|
* | Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. | Martin v. Löwis | 2007-12-04 | 1 | -5/+19 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -3/+3 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -8/+12 |
|
|
* | Remove more cruft leftover from nb_coerce. Rename nb_coerce to | Neil Schemenauer | 2007-09-21 | 1 | -1/+1 |
|
|
* | Merged revisions 58203-58210 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -0/+8 |
|
|
* | Drop convert_binop. | Martin v. Löwis | 2007-09-10 | 1 | -110/+48 |
|
|
* | round(1e20) wrongly returned 0. | Thomas Heller | 2007-08-31 | 1 | -1/+0 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -11/+3 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 1 | -0/+13 |
|
|
* | Finish the work on __round__ and __trunc__. | Guido van Rossum | 2007-08-23 | 1 | -0/+36 |
|
|
* | Change the error reporting when an invalid string is encountered to avoid | Guido van Rossum | 2007-08-22 | 1 | -18/+9 |
|
|
* | Oops. I killed a bit too much and not enough when I deleted intobject.c. | Guido van Rossum | 2007-08-07 | 1 | -0/+6 |
|
|
* | Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. | Guido van Rossum | 2007-08-01 | 1 | -22/+32 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -286/+285 |
|
|
* | Merged revisions 55962-56019 via svnmerge from | Guido van Rossum | 2007-06-18 | 1 | -1/+1 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -29/+40 |
|
|
* | Make test_base64 pass. | Guido van Rossum | 2007-05-22 | 1 | -4/+13 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -12/+14 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -4/+0 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -9/+22 |
|
|
* | Another refleak, this time in PyLong_AsLong. Fixes leaks showing in | Georg Brandl | 2007-02-26 | 1 | -33/+43 |
|
|
* | Merged revisions 53875-53911 via svnmerge from | Thomas Wouters | 2007-02-25 | 1 | -1/+2 |
|
|
* | Fix refcounting bugs related to CONVERT_BINOP. | Martin v. Löwis | 2007-02-06 | 1 | -8/+26 |
|
|
* | Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. | Guido van Rossum | 2007-01-15 | 1 | -5/+5 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -118/+402 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -24/+47 |
|
|
* | - patch #1600346 submitted by Tomer Filiba | Jack Diederich | 2006-11-28 | 1 | -2/+2 |
|
|
* | Get rid of more coerce cruft (really check in this time :-) | Neal Norwitz | 2006-08-29 | 1 | -17/+1 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -4/+10 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -42/+7 |
|
|
* | repr() of a long int no longer produces a trailing 'L'. | Guido van Rossum | 2006-08-18 | 1 | -15/+7 |
|
|