summaryrefslogtreecommitdiffstats
path: root/Modules/operator.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* PySequence_In() -> PySequence_Contains().Guido van Rossum1998-05-221-1/+1
* Add not_ and __not__.Guido van Rossum1998-04-091-0/+2
* #Plug small memory leaks in constructors.Guido van Rossum1997-09-031-2/+3
* Some long variables should have been int to match the 'i' format specifier.Guido van Rossum1997-08-281-3/+3
* Tabification changes only; the module was already newly named.Barry Warsaw1996-12-181-32/+37
* Correct typo -- repeat implements *, not +.Guido van Rossum1996-12-051-1/+1
* Get rid of unused local variable.Guido van Rossum1996-08-211-1/+1
* Added delslice and delitem.Guido van Rossum1996-08-211-32/+47
* Made it palatable for K&R preprocessors. The spam macros don't haveGuido van Rossum1996-08-191-46/+53
* Added hack to get it to compile on AIX.Guido van Rossum1996-08-081-0/+5
* Operators like __add__Guido van Rossum1996-07-301-0/+242