summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix the overflows in expandtabs(). "This time for sure!"Guido van Rossum2008-03-112-50/+65
* Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,Jeffrey Yasskin2008-02-281-0/+103
* Corrected assert to check for correct type in py3k.Eric Smith2008-02-241-1/+1
* Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal.Christian Heimes2008-02-242-4/+8
* Issue 1742669. Now %d accepts very big float numbers.Facundo Batista2008-02-242-29/+88
* #2067: file.__exit__() now calls subclasses' close() method.Georg Brandl2008-02-231-2/+2
* Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma...Eric Smith2008-02-201-40/+15
* Added code to correct combining str and unicode in ''.format(). Added test c...Eric Smith2008-02-181-0/+16
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-1711-23/+2606
* Prevent a crash with nested scopes, again caused by calling Py_DECREF when th...Amaury Forgeot d'Arc2008-02-161-1/+3
* Issue #2115: __slot__ attributes setting was 10x slower.Amaury Forgeot d'Arc2008-02-151-1/+1
* In PyNumber_ToBase, changed from an assert to returning an error when PyObjec...Eric Smith2008-02-151-1/+5
* Fixed repr() and str() of complex numbers. Complex suffered from the same pro...Christian Heimes2008-02-151-7/+40
* Use a static and interned string for __subclasscheck__ and __instancecheck__ ...Christian Heimes2008-02-141-2/+16
* Implemented Martin's suggestion to clear the free lists during the garbage co...Christian Heimes2008-02-145-25/+73
* dict.copy() rises from the ashes. Revert r60687.Raymond Hettinger2008-02-122-19/+1
* Added PyNumber_ToBase and supporting routines _PyInt_Format andEric Smith2008-02-103-33/+113
* Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go ...Raymond Hettinger2008-02-092-1/+19
* Remove unnecessary modulo division.Raymond Hettinger2008-02-081-1/+1
* Use prefix decrementChristian Heimes2008-02-082-4/+3
* Deallocate content of the dict free list on interpreter shutdownChristian Heimes2008-02-081-0/+12
* Added some statistics code to dict and list object code. I wanted to test how...Christian Heimes2008-02-072-0/+54
* Return ints instead of longs for tuple.count() and tuple.index().Raymond Hettinger2008-02-071-2/+2
* Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collect...Raymond Hettinger2008-02-071-0/+54
* Unified naming convention for free lists and their limits. All free listsChristian Heimes2008-02-068-84/+95
* Limit free list of method and builtin function objects to 256 entries each.Christian Heimes2008-02-062-8/+35
* Patch #1953Christian Heimes2008-02-042-25/+57
* Make int() and long() fall back to __trunc__(). See issue 2002.Jeffrey Yasskin2008-02-042-1/+117
* Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_S...Amaury Forgeot d'Arc2008-02-031-1/+6
* Simpler solution to handling non-IEEE 754 environments.Raymond Hettinger2008-02-021-13/+3
* Add protection from weirdness while scaling the mantissa to an integer.Raymond Hettinger2008-02-011-5/+10
* Fix int/long typecase. Add check for non-binary floating point.Raymond Hettinger2008-02-011-2/+9
* labs() takes a long for an input.Raymond Hettinger2008-02-011-1/+1
* Integer ratio should return ints instead of longs whereever possible.Raymond Hettinger2008-02-011-2/+8
* Issue #1996: float.as_integer_ratio() should return fraction in lowest terms.Raymond Hettinger2008-02-011-85/+18
* The previous change was causing a segfault after multiple calls to Py_Initial...Christian Heimes2008-01-301-9/+5
* Fixed some references leaks in sys.Christian Heimes2008-01-301-1/+0
* Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec...Christian Heimes2008-01-301-18/+81
* Factor-out common code with a new macroRaymond Hettinger2008-01-281-4/+4
* Make PySet_Add() work with frozensets.Raymond Hettinger2008-01-281-15/+4
* static PyObject* variables should use PyString_InternFromString() instead of ...Christian Heimes2008-01-283-9/+10
* Added clear cache methods to clear the internal type lookup cache for ref lea...Christian Heimes2008-01-271-0/+18
* Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() becauseJeffrey Yasskin2008-01-271-0/+159
* Whitespace cleanupNeal Norwitz2008-01-271-5/+5
* #1473257: add generator.gi_code attribute that refers toGeorg Brandl2008-01-261-0/+5
* Revert PySet_Add() changes.Raymond Hettinger2008-01-261-0/+5
* Update test code for change to PySet_Add().Raymond Hettinger2008-01-261-1/+0
* Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to build...Raymond Hettinger2008-01-261-4/+0
* 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-6/+7