summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Make Python compile with --disable-unicode.Georg Brandl2008-01-071-0/+2
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-053-121/+3
* Make math.{floor,ceil}({int,long}) return float again for backwardsJeffrey Yasskin2008-01-042-4/+4
* Bug #1481296: Fixed long(float('nan'))!=0L.Christian Heimes2008-01-041-0/+3
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-1/+1
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-034-63/+271
* Fix refleakNeal Norwitz2007-12-311-0/+1
* Fix refleak introduced in r59576.Georg Brandl2007-12-201-0/+1
* Patch #1549 by Thomas Herve.Guido van Rossum2007-12-191-15/+18
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-1921-493/+493
* Applied patch #1635: Float patch for inf and nan on Windows (and other platfo...Christian Heimes2007-12-181-1/+49
* Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.Raymond Hettinger2007-12-181-0/+17
* Optimize PyList_AsTuple(). Improve cache performance by doing theRaymond Hettinger2007-12-151-5/+5
* Fixed bug #1620: New @spam.getter property syntax modifies the property in pl...Christian Heimes2007-12-141-33/+70
* The new float repr causes too much trouble and pain. I'm disabling the featur...Christian Heimes2007-12-111-1/+12
* Backport of r59456:59458 from py3k to trunkChristian Heimes2007-12-102-2/+707
* When splitting, avoid making a copy of the string if the split doesn't findSkip Montanaro2007-12-081-11/+42
* Note that open() is the preferred way to open files (issue 1510).Skip Montanaro2007-12-081-1/+2
* Fix Issue 1045.Raymond Hettinger2007-12-062-41/+39
* merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ...Christian Heimes2007-12-052-4/+6
* 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