| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue 2440: revert r62269 and r62279. These changes were made in an effort t... | Trent Nelson | 2008-04-11 | 1 | -14/+2 |
|
|
* | Fix change to PyNumber_Index() made in r62269, which incorrectly allowed floa... | Trent Nelson | 2008-04-10 | 1 | -1/+1 |
|
|
* | Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), ext... | Trent Nelson | 2008-04-10 | 1 | -2/+14 |
|
|
* | Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 ... | Christian Heimes | 2008-03-20 | 1 | -4/+2 |
|
|
* | Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,... | Christian Heimes | 2008-03-19 | 1 | -0/+5 |
|
|
* | Fix an apparent typo. This test of the readonly boolean should have been != 0 | Gregory P. Smith | 2008-03-15 | 1 | -1/+1 |
|
|
* | Fixes for shared 2.6 code that implements PEP 3101, advanced string | Eric Smith | 2008-02-17 | 1 | -0/+51 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-16 | 1 | -5/+25 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-04 | 1 | -0/+64 |
|
|
* | Merged revisions 60379-60382 via svnmerge from | Christian Heimes | 2008-01-28 | 1 | -2/+2 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Merged revisions 59376-59406 via svnmerge from | Christian Heimes | 2007-12-08 | 1 | -30/+38 |
|
|
* | Fix issue #1553: An errornous __length_hint__ can make list() raise a | Alexandre Vassalotti | 2007-12-04 | 1 | -2/+3 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -5/+5 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -52/+53 |
|
|
* | Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i... | Travis E. Oliphant | 2007-10-13 | 1 | -1/+1 |
|
|
* | Fix problems with memoryview object. There is still more to do to finish PEP... | Travis E. Oliphant | 2007-10-12 | 1 | -347/+347 |
|
|
* | Change PyBuffer to Py_buffer to be consistent with other non-object structure... | Travis E. Oliphant | 2007-09-23 | 1 | -13/+13 |
|
|
* | Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. | Sean Reifscheider | 2007-09-17 | 1 | -4/+4 |
|
|
* | Merged revisions 57778-58052 via svnmerge from | Thomas Wouters | 2007-09-08 | 1 | -1/+5 |
|
|
* | Remove checking redundantly for checks of PyInt and PyLong. | Neal Norwitz | 2007-08-31 | 1 | -4/+3 |
|
|
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -50/+15 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -7/+0 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 1 | -0/+4 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -55/+408 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -0/+16 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -5/+7 |
|
|
* | Merged revisions 55631-55794 via svnmerge from | Guido van Rossum | 2007-06-06 | 1 | -2/+4 |
|
|
* | Merged revisions 55588-55630 via svnmerge from | Guido van Rossum | 2007-05-29 | 1 | -1/+3 |
|
|
* | Merged revisions 55545-55587 via svnmerge from | Guido van Rossum | 2007-05-25 | 1 | -2/+38 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -2/+0 |
|
|
* | Remove the deprecated and useless "pend" argument from | Georg Brandl | 2007-03-18 | 1 | -1/+1 |
|
|
* | Don't confound Neil S on b"a"[0] = b"b". | Guido van Rossum | 2007-02-26 | 1 | -2/+2 |
|
|
* | These comments aren't relevant for 3k. They were to support modules compiled | Neal Norwitz | 2007-02-25 | 1 | -4/+0 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 1 | -0/+2 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -0/+48 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -67/+18 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -8/+6 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -19/+83 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -39/+4 |
|
|
* | Completely get rid of PyClass and PyInstance. | Guido van Rossum | 2006-08-17 | 1 | -5/+0 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -39/+43 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -115/+20 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -1/+2 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -50/+88 |
|
|
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -2/+0 |
|
|
* | Checkpoint. 218 tests are okay; 53 are failing. Done so far: | Guido van Rossum | 2006-03-15 | 1 | -12/+2 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -44/+32 |
|
|
* | Change some sequnce APIs to use Py_ssize_t. | Neal Norwitz | 2006-03-04 | 1 | -5/+9 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|