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