summaryrefslogtreecommitdiff
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize theThomas Wouters2000-10-051-11/+11
* Cosmetic cleanup by Vladimir.Thomas Wouters2000-09-021-43/+49
* Rewritten some pieces of PyNumber_InPlaceAdd() for clarity.Guido van Rossum2000-09-011-15/+20
* Fix grouping, again. This time properly :-) Sorry, guys.Thomas Wouters2000-09-011-3/+3
* Add parens suggested by gcc -Wall.Guido van Rossum2000-09-011-2/+3
* Fix grouping: this is how I intended it, misguided as I was in booleanThomas Wouters2000-08-311-2/+2
* Removed compiler warning about wanting explicit grouping around &&Fred Drake2000-08-311-4/+6
* Support for the in-place operations introduced by augmented assignment. OnlyThomas Wouters2000-08-241-0/+514
* Addendum to previous change: now that 'f' is not unconditionallyThomas Wouters2000-08-231-11/+11
* Add extra check on whether 'tp_as_number' is still non-NULL after coercion,Thomas Wouters2000-08-231-24/+28
* Apply SF patch #101029: call __getitem__ with a proper slice object if thereThomas Wouters2000-08-171-0/+37
* Remobe beopen/cnri/cwi copyrights, according to CNRI instructions.Guido van Rossum2000-08-031-10/+0
* ANSIfication: remove very-old-varargs code, fix function declarations soThomas Wouters2000-07-221-34/+0
* Restore PyXXX_Length() APIs for binary compatibility.Marc-André Lemburg2000-07-171-0/+24
* change abstract size functions PySequence_Size &c.Jeremy Hylton2000-07-121-8/+8
* type_error(): Added "const" to signature to eliminate warning with -Wall.Fred Drake2000-07-091-1/+1
* ANSI-fication of the sources.Fred Drake2000-07-091-140/+55
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-13/+13
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Patch from /F:Andrew M. Kuchling2000-06-181-0/+20
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-42/+49
* Many changes for Unicode, by Marc-Andre Lemburg.Guido van Rossum2000-03-101-14/+134
* Patch by Moshe Zadka: remove the string special case inGuido van Rossum2000-03-071-18/+0
* Patch by Mozhe Zadka, for __contains__ (overloading 'in'). ThisGuido van Rossum2000-02-281-1/+8
* Allow using long integers as arguments to PyObject_GetItem(), _SetItem(),Andrew M. Kuchling2000-02-231-1/+19
* Make multiplying a sequence by a long integer (5L * 'b') legalAndrew M. Kuchling2000-02-141-2/+13
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-119/+61
* 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