summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Patch by Charles Waldman -- remove unneeded and even harmful test forGuido van Rossum1999-01-101-10/+0
* Remove prototype for PyOS_strtol -- Chris Herborth.Guido van Rossum1998-12-101-1/+0
* Believe it or not, Solaris 2.6 strtod() can move the end pointerGuido van Rossum1998-10-011-1/+6
* Better error messages when a sequence is indexed with a non-integer.Guido van Rossum1998-08-131-6/+17
* Better error messages when raising ValueError for int and longGuido van Rossum1998-08-041-6/+9
* Add special case to PySequence_List() so that list() of a list isGuido van Rossum1998-07-101-0/+6
* Changed PySequence_List() and PySequence_Tuple() to supportGuido van Rossum1998-07-101-27/+38
* Fix the tests for various anomalies in the string-to-numbersGuido van Rossum1998-06-221-12/+8
* Fix a whole bunch of error return NULL that should be return -1.Guido van Rossum1998-05-291-5/+5
* Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred().Guido van Rossum1998-05-281-1/+1
* Address some gcc -Wall warnings (e.g. include <ctype.h>).Guido van Rossum1998-05-221-29/+54
* Completely reformatted, standardizing indentation as well asGuido van Rossum1998-05-221-582/+900
* This was the reason a numeric array to a real power was not working.Guido van Rossum1998-04-031-1/+2
* Renamed a local variable from 'PyCFunction' (which is also a typedefGuido van Rossum1997-05-201-6/+6
* Fix reversed test for failure in PySequence_List() and PySequence_Tuple().Guido van Rossum1997-05-141-2/+2
* Quickly renamed the last directory.Guido van Rossum1997-05-021-11/+11
* Several fixes reported by jim F.Guido van Rossum1997-04-021-31/+28
* PySequence_Index(): set exception when object is not found inBarry Warsaw1996-12-181-0/+1
* Added missing PySequence_List.Guido van Rossum1996-12-051-15/+44
* Make Py_ReturnNullError() statis as it should be.Guido van Rossum1996-11-111-1/+1
* Only call sq_length in Sequence_GetItem for negative index.Guido van Rossum1996-11-091-4/+6
* correct typo in return variable for PySequence_Index()Guido van Rossum1996-11-061-1/+1
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Fix subtle bug detected by Jim F.Guido van Rossum1996-09-301-1/+1
* Added PyObject_DelItem and PySequence_Del{Item,Slice}.Guido van Rossum1996-08-211-0/+61
* adapted to K&R CGuido van Rossum1995-09-181-35/+89
* Generic Abstract Object InterfaceGuido van Rossum1995-07-181-0/+972