summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Shut up a compiler warning.Guido van Rossum2007-12-031-0/+1
* Patch #1537 from Chad AustinChristian Heimes2007-12-031-2/+2
* Implement PEP 366Nick Coghlan2007-12-031-0/+2
* Feature #1534Christian Heimes2007-12-011-0/+47
* Spaces vs. Tabs.Georg Brandl2007-11-291-4/+4
* Fix bug #1517, a segfault in lookdict().Guido van Rossum2007-11-291-0/+4
* Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign ofGuido van Rossum2007-11-271-9/+15
* Issue #1445: Fix a SystemError when accessing the ``cell_contents``Amaury Forgeot d'Arc2007-11-241-1/+6
* Backport of the PCbuild9 directory from the py3k branch.Christian Heimes2007-11-222-4/+4
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-225-44/+46
* The incremental decoder for utf-7 must preserve its state between calls.Amaury Forgeot d'Arc2007-11-201-2/+19
* Made _ParseTupleFinds only defined to unicodeobject.cFacundo Batista2007-11-162-0/+4
* Fix for stupid error (I need to remember to do a full 'make clean + make'Facundo Batista2007-11-161-1/+1
* Now in find, rfind, index, and rindex, you can use None as defaults,Facundo Batista2007-11-163-32/+74
* Re-word sentenceAndrew M. Kuchling2007-11-121-1/+1
* Added new decorator syntax to property.__doc__Christian Heimes2007-11-121-4/+14
* Issue 1416. Add getter, setter, deleter methods to properties that can beGuido van Rossum2007-11-101-1/+55
* Optimize common case for dict.fromkeys().Raymond Hettinger2007-11-091-10/+15
* Reposition the decref (spotted by eagle-eye norwitz).Raymond Hettinger2007-11-081-1/+2
* Add set.isdisjoint()Raymond Hettinger2007-11-081-0/+70
* Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset ...Raymond Hettinger2007-11-071-0/+19
* Add missing "return NULL" in overflow check in PyObject_Repr().Guido van Rossum2007-11-061-0/+1
* Backport fixes for the code that decodes octal escapes (and for PyStringGuido van Rossum2007-10-292-7/+12
* Fix the overflow checking of list_repeat.Armin Rigo2007-10-171-4/+7
* Remove file-level typedefs that were inconsistently used throughout the file.Brett Cannon2007-10-101-105/+103
* Coverity #151: Remove deadcode.Neal Norwitz2007-10-041-13/+0
* enumerate() is no longer bounded to using sequences shorter than LONG_MAX. T...Raymond Hettinger2007-10-031-6/+49
* Fix error introduced by r58288; if a tuple is length 0 return its repr andBrett Cannon2007-09-301-4/+4
* tuple.__repr__ did not consider a reference loop as it is not possible fromBrett Cannon2007-09-302-0/+18
* Patch # 188 by Philip Jenvey.Guido van Rossum2007-09-221-0/+1
* Issue #1772851. Alters long.__hash__ from being *almost* completelyFacundo Batista2007-09-191-0/+8
* Properly indent two lines. (Spotted because it caused merge conflicts in theThomas Wouters2007-09-181-2/+2
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-1711-7/+66
* Generators had their throw() method allowing string exceptions. That's aBrett Cannon2007-09-111-4/+1
* Patch # 1026 by Benjamin Aranguren (with Alex Martelli):Guido van Rossum2007-09-101-0/+40
* Fix a possible segfault from recursing too deep to get the repr of a list.Brett Cannon2007-09-101-0/+3
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-073-10/+34
* Set startinpos before calling the error handler.Walter Dörwald2007-08-301-0/+1
* Rewrap line.Walter Dörwald2007-08-301-1/+2
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-286-15/+261
* Revert accidental checkins from last commit.Georg Brandl2007-08-211-32/+6
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-6/+32
* Move another variable declaration up.Walter Dörwald2007-08-171-2/+2
* Move variable declaration up.Walter Dörwald2007-08-171-6/+6
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+266
* Bug #1763149: use proper slice syntax in docstring.Georg Brandl2007-07-292-4/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-2131-611/+557
* Patch #1673759: add a missing overflow check when formatting floatsGeorg Brandl2007-07-122-2/+4
* Add T_PYSSIZET in structmember.h: This can be used forWalter Dörwald2007-06-131-166/+102
* Fix a bug when there was a newline in the string expandtabs was called on.Neal Norwitz2007-06-112-4/+16