| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -2/+2 |
* | Use identifier API for PyObject_GetAttrString. | Martin v. Löwis | 2011-10-10 | 1 | -1/+2 |
* | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -2/+3 |
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. | Brian Curtin | 2011-08-10 | 1 | -2/+1 |
* | Issue #10833: Remove the buffer allocated on the stack, it isn't used anymore | Victor Stinner | 2011-03-21 | 1 | -1/+0 |
* | Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of | Victor Stinner | 2011-03-21 | 1 | -31/+27 |
* | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 1 | -7/+14 |
* | Issue #10359: Remove ";" after function definition, invalid in ISO C | Victor Stinner | 2010-11-09 | 1 | -1/+1 |
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 1 | -1/+1 |
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -58/+58 |
* | fix __bytes__ handling here in py3x | Benjamin Peterson | 2009-11-19 | 1 | -0/+17 |
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -3/+3 |
* | Replace PyNumber_Int with PyNumber_Long. | Mark Dickinson | 2009-01-17 | 1 | -1/+1 |
* | Issue #4910, patch 3/3: rename nb_long to nb_reserved | Mark Dickinson | 2009-01-17 | 1 | -1/+1 |
* | Issue 4910, patch 2 of (probably) 3: pave the way for renaming of | Mark Dickinson | 2009-01-15 | 1 | -2/+1 |
* | Merged revisions 66337,66347,66350,66352,66358 via svnmerge from | Benjamin Peterson | 2008-09-10 | 1 | -1/+1 |
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
* | add some casts and fix the build from 64311 | Benjamin Peterson | 2008-06-16 | 1 | -2/+2 |
* | Merged revisions 64309 via svnmerge from | Amaury Forgeot d'Arc | 2008-06-16 | 1 | -4/+12 |
* | Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods | Benjamin Peterson | 2008-06-11 | 1 | -3/+0 |
* | Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,... | Georg Brandl | 2008-05-25 | 1 | -0/+10 |
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -12/+12 |
* | Remove more cruft leftover from nb_coerce. Rename nb_coerce to | Neil Schemenauer | 2007-09-21 | 1 | -1/+1 |
* | Remove the simple slicing API. All slicing is now done with slice objects. | Thomas Wouters | 2007-08-30 | 1 | -18/+2 |
* | Support unicode names | Neal Norwitz | 2007-08-25 | 1 | -2/+2 |
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -18/+15 |
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -2/+2 |
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -0/+3 |
* | - patch #1600346 submitted by Tomer Filiba | Jack Diederich | 2006-11-28 | 1 | -2/+2 |
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -10/+12 |
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -2/+2 |
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -5/+3 |
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -1/+1 |
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -44/+43 |
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -4/+0 |
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -1/+8 |
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -2/+2 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -9/+9 |
* | Remove some shadowed variables | Neal Norwitz | 2006-01-08 | 1 | -2/+2 |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
* | SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. | Raymond Hettinger | 2005-03-27 | 1 | -5/+1 |
* | SF 1055820: weakref callback vs gc vs threads | Tim Peters | 2004-10-30 | 1 | -1/+3 |
* | Be more careful about maintaining the invariants; it was actually | Fred Drake | 2004-08-03 | 1 | -3/+25 |
* | SF bug #978308, Spurious errors taking bool of dead pro | Neal Norwitz | 2004-07-08 | 1 | -1/+1 |
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 1 | -68/+180 |
* | Allocating a new weakref object can cause existing weakref objects for | Fred Drake | 2004-02-04 | 1 | -3/+16 |
* | Fix bug in interpretation of the "callback" argument in the constructors for | Fred Drake | 2004-02-03 | 1 | -1/+5 |
* | SF bug 839548: Bug in type's GC handling causes segfaults. | Tim Peters | 2003-11-20 | 1 | -4/+30 |
* | Remove proxy_print(), since that caused an inconsistency between | Fred Drake | 2003-07-14 | 1 | -10/+2 |
* | Fix SF 762891: "del p[key]" on proxy object raises SystemError() | Raymond Hettinger | 2003-06-30 | 1 | -1/+5 |