summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Cruft cleanup: Removed the unused last_is_sticky argument from the internalTim Peters2001-05-281-2/+2
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-051-21/+20
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-051-13/+31
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-051-29/+34
* Fix a tiny and unlikely memory leak. Was there before too, and actuallyTim Peters2001-05-051-1/+3
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-051-40/+47
* Make PyIter_Next() a little smarter (wrt its knowledge of iteratorTim Peters2001-05-051-11/+16
* Plug a memory leak in list(), when appending to the result list.Tim Peters2001-05-021-5/+9
* Generalize list(seq) to work with iterators. This also generalizes list()Tim Peters2001-05-011-31/+57
* Mondo changes to the iterator stuff, without changing how Python codeGuido van Rossum2001-04-231-3/+25
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+17
* Move the code implementing isinstance() and issubclass() to new CGuido van Rossum2001-03-211-0/+112
* Rich comparisons fall-out:Guido van Rossum2001-01-171-4/+4
* Massive changes as per PEP 208. Read it for details.Neil Schemenauer2001-01-041-728/+318
* 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