| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Issue 2332: add new attribute names for instance method objects | Neal Norwitz | 2008-03-18 | 1 | -0/+4 |
|
|
* | Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje... | Travis E. Oliphant | 2008-03-18 | 2 | -0/+374 |
|
|
* | - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on | Guido van Rossum | 2008-03-18 | 1 | -0/+12 |
|
|
* | Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. | Jeffrey Yasskin | 2008-03-18 | 2 | -2/+2 |
|
|
* | Fix the IOError message text when opening a file with an invalid filename. | Gregory P. Smith | 2008-03-18 | 1 | -2/+5 |
|
|
* | Issue 2321: reduce memory usage (increase the memory that is returned | Neal Norwitz | 2008-03-17 | 1 | -17/+21 |
|
|
* | Finished backporting PEP 3127, Integer Literal Support and Syntax. | Eric Smith | 2008-03-17 | 1 | -1/+14 |
|
|
* | Issue 2264: empty float presentation type needs to have at least one digit pa... | Eric Smith | 2008-03-17 | 1 | -1/+6 |
|
|
* | Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently | Mark Dickinson | 2008-03-14 | 1 | -8/+8 |
|
|
* | Fix the overflows in expandtabs(). "This time for sure!" | Guido van Rossum | 2008-03-11 | 2 | -50/+65 |
|
|
* | Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, | Jeffrey Yasskin | 2008-02-28 | 1 | -0/+103 |
|
|
* | Corrected assert to check for correct type in py3k. | Eric Smith | 2008-02-24 | 1 | -1/+1 |
|
|
* | Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. | Christian Heimes | 2008-02-24 | 2 | -4/+8 |
|
|
* | Issue 1742669. Now %d accepts very big float numbers. | Facundo Batista | 2008-02-24 | 2 | -29/+88 |
|
|
* | #2067: file.__exit__() now calls subclasses' close() method. | Georg Brandl | 2008-02-23 | 1 | -2/+2 |
|
|
* | Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma... | Eric Smith | 2008-02-20 | 1 | -40/+15 |
|
|
* | Added code to correct combining str and unicode in ''.format(). Added test c... | Eric Smith | 2008-02-18 | 1 | -0/+16 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 11 | -23/+2606 |
|
|
* | Prevent a crash with nested scopes, again caused by calling Py_DECREF when th... | Amaury Forgeot d'Arc | 2008-02-16 | 1 | -1/+3 |
|
|
* | Issue #2115: __slot__ attributes setting was 10x slower. | Amaury Forgeot d'Arc | 2008-02-15 | 1 | -1/+1 |
|
|
* | In PyNumber_ToBase, changed from an assert to returning an error when PyObjec... | Eric Smith | 2008-02-15 | 1 | -1/+5 |
|
|
* | Fixed repr() and str() of complex numbers. Complex suffered from the same pro... | Christian Heimes | 2008-02-15 | 1 | -7/+40 |
|
|
* | Use a static and interned string for __subclasscheck__ and __instancecheck__ ... | Christian Heimes | 2008-02-14 | 1 | -2/+16 |
|
|
* | Implemented Martin's suggestion to clear the free lists during the garbage co... | Christian Heimes | 2008-02-14 | 5 | -25/+73 |
|
|
* | dict.copy() rises from the ashes. Revert r60687. | Raymond Hettinger | 2008-02-12 | 2 | -19/+1 |
|
|
* | Added PyNumber_ToBase and supporting routines _PyInt_Format and | Eric Smith | 2008-02-10 | 3 | -33/+113 |
|
|
* | Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go ... | Raymond Hettinger | 2008-02-09 | 2 | -1/+19 |
|
|
* | Remove unnecessary modulo division. | Raymond Hettinger | 2008-02-08 | 1 | -1/+1 |
|
|
* | Use prefix decrement | Christian Heimes | 2008-02-08 | 2 | -4/+3 |
|
|
* | Deallocate content of the dict free list on interpreter shutdown | Christian Heimes | 2008-02-08 | 1 | -0/+12 |
|
|
* | Added some statistics code to dict and list object code. I wanted to test how... | Christian Heimes | 2008-02-07 | 2 | -0/+54 |
|
|
* | Return ints instead of longs for tuple.count() and tuple.index(). | Raymond Hettinger | 2008-02-07 | 1 | -2/+2 |
|
|
* | Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collect... | Raymond Hettinger | 2008-02-07 | 1 | -0/+54 |
|
|
* | Unified naming convention for free lists and their limits. All free lists | Christian Heimes | 2008-02-06 | 8 | -84/+95 |
|
|
* | Limit free list of method and builtin function objects to 256 entries each. | Christian Heimes | 2008-02-06 | 2 | -8/+35 |
|
|
* | Patch #1953 | Christian Heimes | 2008-02-04 | 2 | -25/+57 |
|
|
* | Make int() and long() fall back to __trunc__(). See issue 2002. | Jeffrey Yasskin | 2008-02-04 | 2 | -1/+117 |
|
|
* | Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_S... | Amaury Forgeot d'Arc | 2008-02-03 | 1 | -1/+6 |
|
|
* | Simpler solution to handling non-IEEE 754 environments. | Raymond Hettinger | 2008-02-02 | 1 | -13/+3 |
|
|
* | Add protection from weirdness while scaling the mantissa to an integer. | Raymond Hettinger | 2008-02-01 | 1 | -5/+10 |
|
|
* | Fix int/long typecase. Add check for non-binary floating point. | Raymond Hettinger | 2008-02-01 | 1 | -2/+9 |
|
|
* | labs() takes a long for an input. | Raymond Hettinger | 2008-02-01 | 1 | -1/+1 |
|
|
* | Integer ratio should return ints instead of longs whereever possible. | Raymond Hettinger | 2008-02-01 | 1 | -2/+8 |
|
|
* | Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. | Raymond Hettinger | 2008-02-01 | 1 | -85/+18 |
|
|
* | The previous change was causing a segfault after multiple calls to Py_Initial... | Christian Heimes | 2008-01-30 | 1 | -9/+5 |
|
|
* | Fixed some references leaks in sys. | Christian Heimes | 2008-01-30 | 1 | -1/+0 |
|
|
* | Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec... | Christian Heimes | 2008-01-30 | 1 | -18/+81 |
|
|
* | Factor-out common code with a new macro | Raymond Hettinger | 2008-01-28 | 1 | -4/+4 |
|
|
* | Make PySet_Add() work with frozensets. | Raymond Hettinger | 2008-01-28 | 1 | -15/+4 |
|
|
* | static PyObject* variables should use PyString_InternFromString() instead of ... | Christian Heimes | 2008-01-28 | 3 | -9/+10 |
|
|