| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 69846 via svnmerge from | Mark Dickinson | 2009-02-21 | 1 | -1/+1 |
|
|
* | Merged revisions 69582-69583 via svnmerge from | Antoine Pitrou | 2009-02-13 | 1 | -15/+7 |
|
|
* | Merged revisions 69436 via svnmerge from | Mark Dickinson | 2009-02-08 | 1 | -1/+1 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -3/+3 |
|
|
* | Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations | Mark Dickinson | 2009-02-01 | 1 | -28/+9 |
|
|
* | Issue #1717: remove the cmp builtin function, the C-API functions | Mark Dickinson | 2009-02-01 | 1 | -100/+0 |
|
|
* | Merged revisions 68560 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -0/+14 |
|
|
* | Merged revisions 68381 via svnmerge from | Benjamin Peterson | 2009-01-11 | 1 | -8/+13 |
|
|
* | Recorded merge of revisions 68051 via svnmerge from | Nick Coghlan | 2008-12-30 | 1 | -0/+11 |
|
|
* | Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-... | Benjamin Peterson | 2008-12-21 | 1 | -0/+3 |
|
|
* | Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to | Mark Dickinson | 2008-11-12 | 1 | -0/+9 |
|
|
* | Removed bytesmeth declaration in OyObject_Bytes. It's not used any more and c... | Christian Heimes | 2008-08-28 | 1 | -1/+1 |
|
|
* | make bytes(o) respect __bytes__ #2415 | Benjamin Peterson | 2008-08-26 | 1 | -0/+39 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -3/+3 |
|
|
* | Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash l... | Nick Coghlan | 2008-07-15 | 1 | -4/+9 |
|
|
* | #2630: Implement PEP 3138. | Georg Brandl | 2008-06-11 | 1 | -0/+27 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -6/+6 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
|
|
* | Merged revisions 60245-60277 via svnmerge from | Christian Heimes | 2008-01-25 | 1 | -0/+5 |
|
|
* | Merged revisions 59921-59932 via svnmerge from | Christian Heimes | 2008-01-12 | 1 | -0/+4 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -23/+23 |
|
|
* | Partial fix for bug #1306 | Christian Heimes | 2007-11-30 | 1 | -1/+8 |
|
|
* | Found another memory leak in longrangeiter. And redo the previous correction | Amaury Forgeot d'Arc | 2007-11-15 | 1 | -3/+0 |
|
|
* | Correct a memory leak: the range() object was not properly freed. | Amaury Forgeot d'Arc | 2007-11-15 | 1 | -0/+3 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -131/+37 |
|
|
* | Merged revisions 58221-58741 via svnmerge from | Guido van Rossum | 2007-11-01 | 1 | -0/+5 |
|
|
* | Patch 1352 (continued in issue 1329) by Christian Heimes. | Guido van Rossum | 2007-10-30 | 1 | -0/+3 |
|
|
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -0/+4 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -13/+7 |
|
|
* | Oops. The PyObject_Print() function was totally broken; the original code | Guido van Rossum | 2007-08-09 | 1 | -3/+19 |
|
|
* | Kill all uses and definitions of tp_print under Objects/. (Others will follow.) | Guido van Rossum | 2007-08-07 | 1 | -3/+1 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -34/+34 |
|
|
* | Remove unused local variable. | Thomas Heller | 2007-07-11 | 1 | -1/+0 |
|
|
* | Make test_descr.py pass. Had to disable a few tests, remove references | Guido van Rossum | 2007-07-11 | 1 | -5/+5 |
|
|
* | Simplify error formatting. | Walter Dörwald | 2007-06-11 | 1 | -10/+10 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -76/+32 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -15/+35 |
|
|
* | Simplify PyObject_Unicode(NULL) by using | Walter Dörwald | 2007-05-11 | 1 | -8/+3 |
|
|
* | It's ok for __repr__ to return unicode. | Guido van Rossum | 2007-05-04 | 1 | -9/+2 |
|
|
* | More coding by random modification. | Guido van Rossum | 2007-05-04 | 1 | -5/+6 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -18/+0 |
|
|
* | Rough and dirty job -- allow concatenation of bytes and arbitrary | Guido van Rossum | 2007-04-13 | 1 | -2/+1 |
|
|
* | Check the keys of the locals dict -- they need not be a list. | Georg Brandl | 2007-03-12 | 1 | -1/+12 |
|
|
* | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. | Georg Brandl | 2007-03-10 | 1 | -126/+144 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -1/+1 |
|
|
* | The opstrings table was backwards. Add an XXX comment. | Guido van Rossum | 2006-12-19 | 1 | -1/+2 |
|
|
* | - 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 | -27/+0 |
|
|
* | Get rid of most of the remaining uses of <>. There's still Tools/* thogh. | Neal Norwitz | 2006-08-29 | 1 | -1/+1 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -375/+177 |
|
|