summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Bug #1653736: Properly discard third argument to slot_nb_inplace_power.Martin v. Löwis2007-02-091-1/+7
* Bypass set specific optimizations for set and frozenset subclasses.Raymond Hettinger2007-02-081-7/+7
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-071-0/+6
* 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
* SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclassesRaymond Hettinger2007-02-071-1/+1
* Bug #1648179: set.update() not recognizing __iter__ overrides in dict subcla...Raymond Hettinger2007-02-011-4/+4
* If you created a weakref in an object's __del__ method to itself it wouldBrett Cannon2007-01-232-0/+14
* Backport trunk revision 53527:Thomas Wouters2007-01-231-0/+2
* SF #1486663 -- Allow keyword args in subclasses of set() and frozenset().Raymond Hettinger2007-01-111-2/+2
* For sets with cyclical reprs, emit '...' instead of recursing.Raymond Hettinger2006-12-291-4/+24
* Backport fixes to set objects:Raymond Hettinger2006-12-081-11/+69
* 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
* Backport 52506:Neal Norwitz2006-10-281-1/+2
* Backport 52505:Neal Norwitz2006-10-281-0/+5
* Backport 52502:Neal 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
* Forward-port of r52136: a review of overflow-detecting code.Armin Rigo2006-10-048-72/+105
* 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
* Backport of fix to allow exception instances to be sliced once again.Brett Cannon2006-09-211-1/+8
* Remove __unicode__ method so that ``unicode(BaseException)`` succeeds.Brett Cannon2006-09-091-17/+0
* Backport rev. 51798 from trunk:Georg Brandl2006-09-081-8/+35
* Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.Georg Brandl2006-09-061-2/+8
* Backport 51669: Make sure memory is properly cleaned up in file_init (even th...Neal Norwitz2006-09-051-1/+1
* Fix str.rpartition(sep) when sep is not found in str.Neal Norwitz2006-09-053-8/+8
* Fix SF bug #1546288, crash in dict_equalNeal Norwitz2006-09-051-0/+3
* i_divmod(): As discussed on Python-Dev, changed the overflowTim Peters2006-09-051-2/+8
* - Patch #1541585: fix buffer overrun when performing repr() onNeal Norwitz2006-08-211-12/+25
* Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-devNeal Norwitz2006-08-211-1/+1
* 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