summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Subclasses of int/long are allowed to define an __index__.Neal Norwitz2006-08-151-4/+2
* Fix refleak introduced in rev. 51248.Georg Brandl2006-08-141-1/+3
* Correct an accidentally removed previous patch.Marc-André Lemburg2006-08-141-5/+2
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-143-21/+93
* Can't return NULL from a void function. If there is a memory error,Neal Norwitz2006-08-141-2/+2
* Fix segfault when doing string formatting on subclasses of long ifNeal Norwitz2006-08-131-1/+4
* Handle a whole lot of failures from PyString_FromInternedString().Neal Norwitz2006-08-131-25/+101
* Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbotsNeal Norwitz2006-08-122-11/+10
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-1210-130/+125
* Check return of PyMem_MALLOC (garbage) is non-NULL.Neal Norwitz2006-08-121-2/+6
* Whoops, how did that get in there. :-) Revert all the parts of 51227 that we...Neal Norwitz2006-08-121-3/+2
* Check returned pointer is valid.Neal Norwitz2006-08-121-2/+3
* Klocwork made another run and found a bunch more problems.Neal Norwitz2006-08-121-0/+4
* Fix and test for an infinite C recursion.Armin Rigo2006-08-091-1/+1
* __hash__ may now return long int; the final hashMartin v. Löwis2006-08-092-6/+7
* memcmp() can return values other than -1, 0, and +1 but tp_compareThomas Heller2006-08-081-1/+1
* Remove "non-mapping" and "non-sequence" from TypeErrors raised byGeorg Brandl2006-08-081-2/+2
* Typo fixesAndrew M. Kuchling2006-08-042-2/+2
* Change fix for segfaulting property(), add a NEWS entry and a test.Georg Brandl2006-08-041-10/+12
* Fix bug caused by first decrefing, then increfing.Georg Brandl2006-08-041-5/+4
* SF patch #1534048 (bug #1531003): fix typo in error messageFred Drake2006-08-041-1/+1
* _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.Neal Norwitz2006-08-021-2/+2
* typo fixAndrew M. Kuchling2006-08-011-1/+1
* Whitespace normalizationNeal Norwitz2006-07-301-35/+32
* Bug #1515471: string.replace() accepts character buffers again.Neal Norwitz2006-07-301-71/+51
* [Bug #1414697] Change docstring of set/frozenset types to specify that the co...Andrew M. Kuchling2006-07-291-2/+2
* Closure can't be NULL at this point since we know it's a tuple.Neal Norwitz2006-07-271-1/+1
* Move the initialization of size_a down below the check for a being NULL.Neal Norwitz2006-07-231-1/+2
* Handle allocation failures gracefully. Found with failmalloc.Neal Norwitz2006-07-212-0/+5
* Move the initialization of some pointers earlier. The problem isNeal Norwitz2006-07-211-1/+1
* Add some asserts that we got good params passedNeal Norwitz2006-07-211-0/+3
* otherset is known to be non-NULL based on checks before and DECREF after.Neal Norwitz2006-07-171-2/+2
* Stop INCREFing name, then checking if it's NULL. name (f_name) should neverNeal Norwitz2006-07-171-3/+6
* PyFunction_SetDefaults() is documented as taking None or a tuple.Neal Norwitz2006-07-161-2/+2
* Handle a NULL name properly.Neal Norwitz2006-07-161-3/+3
* Use sizeof(buffer) instead of duplicating the constants to ensure they won'tNeal Norwitz2006-07-161-7/+7
* a & b were dereffed above, so they are known to be valid pointers.Neal Norwitz2006-07-161-3/+2
* Fix uninitialized memory read reported by Valgrind when running doctest.Neal Norwitz2006-07-121-0/+1
* Fix build problems with the platform SDK on windows. It is not sufficient to...Kristján Valur Jónsson2006-07-032-4/+4
* Put method-wrappers into trashcan. Fixes #927248.Martin v. Löwis2006-07-031-1/+3
* Another problem reported by Coverity. Backport candidate.Neal Norwitz2006-06-301-0/+2
* Fix refleakNeal Norwitz2006-06-231-1/+3
* Fix for an obscure bug introduced by revs 46806 and 46808, with a test.Armin Rigo2006-06-212-11/+10
* Use Py_ssize_tNeal Norwitz2006-06-191-22/+22
* Patch #1507676: improve exception messages in abstract.c, object.c and typeob...Georg Brandl2006-06-183-64/+81
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-39/+175
* If a classic class defined a __coerce__() method that just returned its twoBrett Cannon2006-06-131-0/+3
* Initialize the type object so pychecker can't crash the interpreter.Neal Norwitz2006-06-131-0/+2
* Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CR...Kristján Valur Jónsson2006-06-122-1/+38
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-2/+7