summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Correct previous checkin, probably a svn merge issue.Amaury Forgeot d'Arc2008-04-111-4/+4
* - Issue #1686386: Tuple's tp_repr did not take into account the possibility ofGuido van Rossum2008-04-102-1/+18
* backport r62271 from trunk.Gregory P. Smith2008-04-101-1/+0
* Backport r62261 from trunk:Gregory P. Smith2008-04-091-0/+5
* #1477: ur'\U0010FFFF' used to raise in narrow unicode builds.Amaury Forgeot d'Arc2008-03-241-4/+42
* Backport r61458:Neal Norwitz2008-03-181-11/+15
* Fix the overflows in expandtabs(). "This time for sure!"Guido van Rossum2008-03-112-50/+65
* Added checks for integer overflows, contributed by Google. Some areMartin v. Löwis2008-02-143-6/+27
* Fix typo in constant name.Thomas Wouters2008-01-251-1/+1
* Use the right (portable) definition of the max of a Py_ssize_t.Thomas Wouters2008-01-251-1/+1
* Rewrite the list_inline_repeat overflow check slightly differently.Guido van Rossum2008-01-251-4/+5
* Backport r60246.Guido van Rossum2008-01-241-0/+5
* Backport r55080:Guido van Rossum2008-01-181-4/+85
* Fix an edge case whereby the __del__() method of a classic class couldGuido van Rossum2008-01-181-0/+10
* merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ...Christian Heimes2007-12-052-4/+6
* Spaces vs. Tabs.Georg Brandl2007-11-291-4/+4
* Fix bug #1517, a possible segfault in lookup().Guido van Rossum2007-11-291-0/+4
* Issue #1445: Fix a SystemError when accessing the ``cell_contents``Amaury Forgeot d'Arc2007-11-241-1/+6
* Issue 1704621. Fix segfaults in list_repeat() and list_inplace_repeat().Guido van Rossum2007-11-121-5/+7
* Backport r58892.Guido van Rossum2007-11-071-0/+1
* Backport r58709 from trunk:Georg Brandl2007-11-022-7/+12
* Cause passing a string to generator.throw() to raise a deprecation warning.Brett Cannon2007-09-111-0/+6
* Bug #1763149: use proper slice syntax in docstring.Georg Brandl2007-07-292-4/+4
* Patch #1673759: add a missing overflow check when formatting floatsGeorg Brandl2007-07-122-2/+4
* Backport 55874:Neal Norwitz2007-06-112-4/+16
* Prevent expandtabs() on string and unicode objects from causing a segfault whenNeal Norwitz2007-06-092-6/+28
* Bug #1733488: Fix compilation of bufferobject.c on AIX.Martin v. Löwis2007-06-081-1/+1
* Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC()Neal Norwitz2007-05-161-1/+1
* Merge change 54982 from the trunk. This fixes the test_subprocess test in th...Kristján Valur Jónsson2007-05-071-8/+7
* the nb_long slot on classobject instances now defaults to call the nb_int slo...Kristján Valur Jónsson2007-05-071-1/+13
* Fix two problems that emerged when the testsuite was run with an x64 build: ...Kristján Valur Jónsson2007-05-071-1/+1
* Backport r54757 - missing NULL checks.Georg Brandl2007-04-212-0/+10
* Revert 53667Raymond Hettinger2007-04-181-7/+7
* Revert SF #1615701 (rev 53655): dict.update() does *not* call __getitem__() orNeal Norwitz2007-04-161-1/+1
* Revert 54813 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen.Neal Norwitz2007-04-161-2/+2
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed...Kristján Valur Jónsson2007-04-131-2/+2
* Test and fix fromkeys optional argument.Raymond Hettinger2007-03-211-2/+2
* Extend work on rev 52962 and 53830 eliminating redundant PyObject_Hash() call...Raymond Hettinger2007-03-202-2/+36
* 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 #1675981: remove unreachable code from type.__new__() method.Žiga Seilnacht2007-03-111-7/+5
* 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
* Backport from Py3k branch: fix refleak in PyString_Format.Georg Brandl2007-02-261-1/+5
* 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
* 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