summaryrefslogtreecommitdiffstats
path: root/Modules/operator.c
Commit message (Expand)AuthorAgeFilesLines
* Minor grammar refinement for hmac.compare_digest().Larry Hastings2012-06-251-2/+2
* Small wording update from Larry.Georg Brandl2012-06-241-1/+1
* Improve hmac.compare_digest() docstring and documentation, courtesy of Larry H.Georg Brandl2012-06-241-7/+7
* Remove unused variable.Georg Brandl2012-06-241-1/+0
* Fix a refleak in c82451eeb595.Georg Brandl2012-06-241-3/+1
* Issue #15061: Re-implemented hmac.compare_digest() in CChristian Heimes2012-06-241-0/+142
* Implement PEP 393.Martin v. Löwis2011-09-281-11/+16
* No declarations in the middle of a block (fixes compile under Windows)Antoine Pitrou2010-10-311-3/+3
* Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou.Antoine Pitrou2010-10-311-29/+104
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-375/+375
* Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-...Benjamin Peterson2009-11-131-14/+14
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-3/+3
* As discussed on python-dev, remove several operator functionsRaymond Hettinger2009-01-261-15/+0
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-8/+21
* Remove __{get,set,del}slice__ dingleberries.Neal Norwitz2008-03-171-47/+0
* Merged revisions 61003-61033 via svnmerge fromChristian Heimes2008-02-241-3/+178
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-4/+2
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-13/+11
* Remove isCallable() and sequenceIncludes() from the operator module.Collin Winter2007-03-211-6/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-10/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+8
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-4/+2
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-6/+2
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-0/+15
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-6/+6
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* adding in-place operators to the operator module.Armin Rigo2005-12-291-1/+41
* two missing PyDoc_STR().Armin Rigo2005-12-291-2/+2
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+6
* operator.itemgetter() and operator.attrgetter() now support extractionRaymond Hettinger2005-03-091-14/+72
* Fix typos.Raymond Hettinger2003-12-041-2/+2
* As discussed on python-dev, added two extractor functions to theRaymond Hettinger2003-12-011-2/+225
* SF patch #670423: Add missing identity tests to operator.cRaymond Hettinger2003-01-181-0/+24
* SF patch 660559: Use METH_O and METH_NOARGS where possibleRaymond Hettinger2003-01-031-17/+19
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-9/+9
* Added __pow__(a,b) to the operator module. Completes the pattern ofRaymond Hettinger2002-08-191-0/+10
* Allow more docstrings to be removed during compilation in some modulesNeal Norwitz2002-08-131-2/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-6/+6
* Removed old Digital Creations copyright/license notices (withGuido van Rossum2002-04-041-59/+0
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-7/+13
* Add wrappers around the rich-comparison operations.Fred Drake2001-08-091-1/+22
* Add invert() and __invert__() as aliases for inv()/__inv__().Fred Drake2000-09-171-11/+16
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* Pretensions of the 20th century... remove old-style preprocessorFred Drake2000-07-081-6/+0
* ANSI-fy the sources.Fred Drake2000-07-081-19/+16
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Add an alias (and preferred name) "contains" for "sequenceIncludes".Guido van Rossum1998-05-221-47/+34