summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix a usage of the dangerous pattern decref - modify field - incref.Armin Rigo2007-04-191-2/+3
* Revert r53997 as perArmin Rigo2007-04-191-94/+32
* Silence a compiler warning about incompatible pointer types.Brett Cannon2007-04-191-1/+1
* When __slots__ are set to a unicode string, make it work the same asNeal Norwitz2007-04-141-1/+1
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed...Kristján Valur Jónsson2007-04-131-2/+2
* SF 1193128: Let str.translate(None) be an identity transformationRaymond Hettinger2007-04-121-8/+16
* SF 1191699: Make slices picklableRaymond Hettinger2007-04-111-0/+10
* Add some missing NULL checks which trigger crashes on low-memory conditions.Georg Brandl2007-04-112-0/+10
* Add a type.__init__() method that enforces the same signature asGuido van Rossum2007-03-231-1/+34
* - Bug #1683368: The object.__init__() and object.__new__() methods areGuido van Rossum2007-03-231-12/+88
* Add test and fix for fromkeys() optional argument.Raymond Hettinger2007-03-211-2/+2
* Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...Raymond Hettinger2007-03-202-2/+36
* Patch #1675423: PyComplex_AsCComplex() now tries to convert an objectGeorg Brandl2007-03-171-1/+48
* Remove warning: funcion declaration isn't a prototypeJeremy Hylton2007-03-161-2/+1
* Patch #1623563: allow __class__ assignment for classes with __slots__.Žiga Seilnacht2007-03-161-4/+27
* Patch #1462488: prevent a segfault in object_reduce_ex() by splittingŽiga Seilnacht2007-03-151-14/+47
* Patch #1680015: Don't modify __slots__ tuple if it contains an unicodeŽiga Seilnacht2007-03-141-16/+20
* Patch #1642844: comments to clarify the complexobject constructor.Georg Brandl2007-03-131-4/+25
* Typo and grammar fixes.Georg Brandl2007-03-131-3/+3
* Backport from Py3k branch:Georg Brandl2007-03-121-96/+169
* Patch #1675981: remove unreachable code from type.__new__() method.Žiga Seilnacht2007-03-111-7/+5
* Patch #1491866: change the complex() constructor to allow parthensized forms....Collin Winter2007-03-091-5/+25
* Fix SF #1676971, Complex OverflowError has a typoNeal Norwitz2007-03-091-1/+1
* Patch #1638879: don't accept strings with embedded NUL bytes in long().Georg Brandl2007-03-061-1/+18
* 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