summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Silence compiler warningRaymond Hettinger2007-02-071-1/+1
* Bug #1575169: operator.isSequenceType() now returns False for subclasses of d...Raymond Hettinger2007-02-071-0/+2
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-8/+6
* Subclasses of int/long are allowed to define an __index__.Neal Norwitz2006-08-151-4/+2
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-21/+84
* Remove "non-mapping" and "non-sequence" from TypeErrors raised byGeorg Brandl2006-08-081-2/+2
* Fix for an obscure bug introduced by revs 46806 and 46808, with a test.Armin Rigo2006-06-211-11/+1
* Patch #1507676: improve exception messages in abstract.c, object.c and typeob...Georg Brandl2006-06-181-39/+43
* Fix bug introduced in rev. 46806 by not having variable declaration at the to...Brett Cannon2006-06-091-2/+4
* An object with __call__ as an attribute, when called, will have that attribut...Brett Cannon2006-06-091-0/+8
* Fix coding style guide bug.Brett Cannon2006-06-061-1/+2
* C++ compilation cleanup: Migrate declaration ofSkip Montanaro2006-04-181-7/+0
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-141-28/+90
* Minor bugs in the __index__ code (PEP 357), with tests.Armin Rigo2006-03-301-2/+3
* Stop duplicating code and handle slice indices consistently and correctlyNeal Norwitz2006-03-231-20/+2
* Update function name to reflect params and stop casting to long to avoid losi...Neal Norwitz2006-03-201-5/+5
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-44/+32
* Change some sequnce APIs to use Py_ssize_t.Neal Norwitz2006-03-041-5/+9
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-43/+43
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-3/+3
* Remove some shadowed variablesNeal Norwitz2006-01-081-1/+1
* SF patch #1390657:Armin Rigo2005-12-291-6/+45
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-1/+26
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+5
* Fix:Michael W. Hudson2005-07-121-8/+13
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-47/+37
* Small boost to PySequence_Fast(). Lists build faster than tuples forRaymond Hettinger2004-12-181-1/+1
* Add missing decref.Raymond Hettinger2004-12-161-0/+1
* SF bug #1085744: Performance issues with PySequence_Tuple()Raymond Hettinger2004-12-161-4/+14
* SF bug #1030557: PyMapping_Check crashes when argument is NULLRaymond Hettinger2004-09-191-2/+2
* Check the type of values returned by __int__, __float__, __long__,Neil Schemenauer2004-07-191-6/+33
* SF bug #952866: "can't multiply sequence *by* non-int"Raymond Hettinger2004-05-121-1/+1
* Improve previous checkin to use a slot check instead of equivalentRaymond Hettinger2004-04-051-1/+2
* Improve accuracy of sequence and mapping checks.Raymond Hettinger2004-04-041-2/+8
* recursive_isinstance(), recursive_issubclass(): New code here returnedTim Peters2004-03-211-2/+2
* Limit the nesting depth of a tuple passed as the second argument toBrett Cannon2004-03-201-9/+36
* Add missing decrefRaymond Hettinger2004-03-171-0/+1
* Eliminate a big block of duplicate code in PySequence_List() byRaymond Hettinger2004-03-111-54/+6
* SF Patch #871704: Py_SequenceFast can mask errorsRaymond Hettinger2004-01-111-3/+11
* Apply pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-8/+4
* Apply tuple/list pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-1/+1
* Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItemRaymond Hettinger2003-10-271-1/+1
* Removed duplicate test from inner loop.Raymond Hettinger2003-03-011-6/+1
* Make PyNumber_Check() a bit more careful, since all sorts of thingsGuido van Rossum2003-02-181-1/+3
* Add missing cast in previous fix.Guido van Rossum2003-02-121-1/+2
* SF #532767: isinstance(x, X) should work when x is a proxy for an XGuido van Rossum2003-02-121-6/+19
* Fold long lines.Guido van Rossum2003-02-101-4/+7
* Merge to trunk from release branch:Guido van Rossum2002-12-311-0/+1