summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-2224/+2224
* Merged revisions 69846 via svnmerge fromJesus Cea2009-07-021-1/+1
* Merged revisions 69433,69436 via svnmerge fromMark Dickinson2009-02-081-1/+1
* Validate that __length_hint__ returns a usable result.Raymond Hettinger2009-02-031-1/+1
* Issue 1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2009-02-021-14/+19
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-80/+91
* Fix memory leak: Always DECREF obj in PyBuffer_Release.Martin v. Löwis2008-08-141-5/+3
* Make obj an owned reference in Py_buffer; this checkinMartin v. Löwis2008-08-141-1/+4
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-20/+22
* Correct grammar.Skip Montanaro2008-07-071-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-22/+22
* Remove locking part of new buffer protocol.Travis E. Oliphant2008-06-061-6/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-22/+22
* Prevent namespace pollution, add static for internal functionsNeal Norwitz2008-04-151-2/+2
* Remove unnecessary traceback save/restore pair.Raymond Hettinger2008-03-191-4/+2
* Fix compiler warning.Raymond Hettinger2008-03-191-1/+1
* Speed-up isinstance() for one easy case.Raymond Hettinger2008-03-181-0/+5
* Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje...Travis E. Oliphant2008-03-181-0/+369
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+132
* In PyNumber_ToBase, changed from an assert to returning an error when PyObjec...Eric Smith2008-02-151-1/+5
* Use a static and interned string for __subclasscheck__ and __instancecheck__ ...Christian Heimes2008-02-141-2/+16
* Added PyNumber_ToBase and supporting routines _PyInt_Format andEric Smith2008-02-101-0/+19
* Make int() and long() fall back to __trunc__(). See issue 2002.Jeffrey Yasskin2008-02-041-0/+94
* static PyObject* variables should use PyString_InternFromString() instead of ...Christian Heimes2008-01-281-2/+2
* Fix Issue 1045.Raymond Hettinger2007-12-061-30/+38
* merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ...Christian Heimes2007-12-051-2/+3
* Properly indent two lines. (Spotted because it caused merge conflicts in theThomas Wouters2007-09-181-2/+2
* Patch # 1026 by Benjamin Aranguren (with Alex Martelli):Guido van Rossum2007-09-101-0/+40
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-071-1/+5
* 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