| Commit message (Expand) | Author | Age | Files | Lines |
| * | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -375/+375 |
| * | Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-... | Benjamin Peterson | 2009-11-13 | 1 | -14/+14 |
| * | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -3/+3 |
| * | As discussed on python-dev, remove several operator functions | Raymond Hettinger | 2009-01-26 | 1 | -15/+0 |
| * | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
| * | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -8/+21 |
| * | Remove __{get,set,del}slice__ dingleberries. | Neal Norwitz | 2008-03-17 | 1 | -47/+0 |
| * | Merged revisions 61003-61033 via svnmerge from | Christian Heimes | 2008-02-24 | 1 | -3/+178 |
| * | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -2/+2 |
| * | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -4/+2 |
| * | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -13/+11 |
| * | Remove isCallable() and sequenceIncludes() from the operator module. | Collin Winter | 2007-03-21 | 1 | -6/+0 |
| * | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -10/+2 |
| * | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -2/+8 |
| * | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -4/+2 |
| * | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -6/+2 |
| * | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+15 |
| * | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -6/+6 |
| * | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
| * | adding in-place operators to the operator module. | Armin Rigo | 2005-12-29 | 1 | -1/+41 |
| * | two missing PyDoc_STR(). | Armin Rigo | 2005-12-29 | 1 | -2/+2 |
| * | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+6 |
| * | operator.itemgetter() and operator.attrgetter() now support extraction | Raymond Hettinger | 2005-03-09 | 1 | -14/+72 |
| * | Fix typos. | Raymond Hettinger | 2003-12-04 | 1 | -2/+2 |
| * | As discussed on python-dev, added two extractor functions to the | Raymond Hettinger | 2003-12-01 | 1 | -2/+225 |
| * | SF patch #670423: Add missing identity tests to operator.c | Raymond Hettinger | 2003-01-18 | 1 | -0/+24 |
| * | SF patch 660559: Use METH_O and METH_NOARGS where possible | Raymond Hettinger | 2003-01-03 | 1 | -17/+19 |
| * | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -9/+9 |
| * | Added __pow__(a,b) to the operator module. Completes the pattern of | Raymond Hettinger | 2002-08-19 | 1 | -0/+10 |
| * | Allow more docstrings to be removed during compilation in some modules | Neal Norwitz | 2002-08-13 | 1 | -2/+2 |
| * | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
| * | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -6/+6 |
| * | Removed old Digital Creations copyright/license notices (with | Guido van Rossum | 2002-04-04 | 1 | -59/+0 |
| * | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -7/+13 |
| * | Add wrappers around the rich-comparison operations. | Fred Drake | 2001-08-09 | 1 | -1/+22 |
| * | Add invert() and __invert__() as aliases for inv()/__inv__(). | Fred Drake | 2000-09-17 | 1 | -11/+16 |
| * | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -1/+1 |
| * | Pretensions of the 20th century... remove old-style preprocessor | Fred Drake | 2000-07-08 | 1 | -6/+0 |
| * | ANSI-fy the sources. | Fred Drake | 2000-07-08 | 1 | -19/+16 |
| * | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| * | Add an alias (and preferred name) "contains" for "sequenceIncludes". | Guido van Rossum | 1998-05-22 | 1 | -47/+34 |
| * | PySequence_In() -> PySequence_Contains(). | Guido van Rossum | 1998-05-22 | 1 | -1/+1 |
| * | Add not_ and __not__. | Guido van Rossum | 1998-04-09 | 1 | -0/+2 |
| * | #Plug small memory leaks in constructors. | Guido van Rossum | 1997-09-03 | 1 | -2/+3 |
| * | Some long variables should have been int to match the 'i' format specifier. | Guido van Rossum | 1997-08-28 | 1 | -3/+3 |
| * | Tabification changes only; the module was already newly named. | Barry Warsaw | 1996-12-18 | 1 | -32/+37 |
| * | Correct typo -- repeat implements *, not +. | Guido van Rossum | 1996-12-05 | 1 | -1/+1 |
| * | Get rid of unused local variable. | Guido van Rossum | 1996-08-21 | 1 | -1/+1 |
| * | Added delslice and delitem. | Guido van Rossum | 1996-08-21 | 1 | -32/+47 |
| * | Made it palatable for K&R preprocessors. The spam macros don't have | Guido van Rossum | 1996-08-19 | 1 | -46/+53 |