summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing.Raymond Hettinger2006-12-301-4/+24
* Typo fixAndrew M. Kuchling2006-12-221-1/+1
* Port Georg's dictobject.c fix keys that were tuples got unpacked on the way t...Raymond Hettinger2006-12-081-1/+15
* Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug ...Raymond Hettinger2006-12-081-6/+31
* Eliminate two redundant calls to PyObject_Hash().Raymond Hettinger2006-12-081-4/+23
* Patch [ 1586791 ] better error msgs for some TypeErrorsGeorg Brandl2006-11-193-14/+22
* Bug #1067760: Deprecate passing floats to file.seek.Martin v. Löwis2006-11-121-4/+17
* Correctly forward exception in instance_contains().Martin v. Löwis2006-11-081-4/+6
* Fix refleakNeal Norwitz2006-10-291-0/+1
* Bug #1576657: when setting a KeyError for a tuple key, make sure thatGeorg Brandl2006-10-291-3/+16
* Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either.Neal Norwitz2006-10-281-1/+2
* Prevent crash if alloc of garbage fails. Found by Typo.pl.Neal Norwitz2006-10-281-0/+5
* Fix warnings with HP's C compiler. It doesn't recognize that infiniteNeal Norwitz2006-10-282-0/+6
* WindowsError.str should display the windows error code,Thomas Heller2006-10-271-7/+7
* Bug #1545497: when given an explicit base, int() did ignore NULsGeorg Brandl2006-10-121-2/+19
* Fix wording in commentAndrew M. Kuchling2006-10-091-2/+2
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-048-65/+104
* Fix integer negation and absolute value to not relyMartin v. Löwis2006-10-041-4/+3
* Bug #1566800: make sure that EnvironmentError can be called with anyGeorg Brandl2006-09-301-1/+1
* Patch #1567691: super() and new.instancemethod() now don't acceptGeorg Brandl2006-09-302-0/+4
* Allow exceptions to be directly sliced againBrett Cannon2006-09-201-1/+8
* Remove the __unicode__ method from exceptions. Allows unicode() to be calledBrett Cannon2006-09-091-17/+0
* Fix refcounts and add error checks.Raymond Hettinger2006-09-071-8/+35
* Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.Georg Brandl2006-09-061-2/+8
* Fix SF bug #1546288, crash in dict_equal.Neal Norwitz2006-09-051-0/+3
* "Conceptual" merge of rev 51711 from the 2.5 branch.Tim Peters2006-09-051-1/+1
* Fix endcase for str.rpartition()Raymond Hettinger2006-09-043-8/+8
* Make sure memory is properly cleaned up in file_init.Brett Cannon2006-08-311-1/+1
* Reverting the patch that tried to fix the issue whereby x**2 raisesAlex Martelli2006-08-231-3/+3
* x**2 should about equal x*x (including for a float x such that the result isAlex Martelli2006-08-231-3/+3
* Patch #1541585: fix buffer overrun when performing repr() onNeal Norwitz2006-08-211-12/+29
* Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-devNeal Norwitz2006-08-211-1/+1
* Move initialization to after the asserts for non-NULL values.Neal Norwitz2006-08-191-2/+4
* Move initialization of interned strings to before allocating theNeal Norwitz2006-08-191-11/+15
* 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