summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Add checking for a number of metaclass error conditions.Jeremy Hylton2007-02-271-32/+94
* whitespace normalizationJeremy Hylton2007-02-271-82/+82
* tabifyJeremy Hylton2007-02-271-97/+97
* Fix assertion.Jeremy Hylton2007-02-261-2/+2
* Do not copy free variables to locals in class namespaces.Jeremy Hylton2007-02-261-19/+75
* Backport from Py3k branch: fix refleak in PyString_Format.Georg Brandl2007-02-261-1/+5
* Variation of patch # 1624059 to speed up checking if an object is a subclassNeal Norwitz2007-02-259-9/+30
* Whitespace only changesNeal Norwitz2007-02-251-3/+2
* Add more details when releasing interned stringsNeal Norwitz2007-02-251-1/+8
* Fixup set/dict interoperability.Raymond Hettinger2007-02-191-0/+11
* Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().Raymond Hettinger2007-02-192-7/+50
* Patch #1397848: add the reasoning behind no-resize-on-shrinkage.Martin v. Löwis2007-02-151-0/+20
* 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-081-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
* Fix crasher for when an object's __del__ creates a new weakref to itself.Brett Cannon2007-01-232-0/+14
* SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomizeThomas Wouters2007-01-231-0/+2
* SF #1486663 -- Allow keyword args in subclasses of set() and frozenset().Raymond Hettinger2007-01-111-2/+2
* Minor change in int() docstring for proper spacing.Gustavo Niemeyer2007-01-101-1/+1
* Mention in the int() docstring that a base zero has meaning, asGustavo Niemeyer2007-01-101-2/+3
* 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