| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix reallocation bug in unicode.translate(): The code was comparing | Walter Dörwald | 2004-02-05 | 1 | -1/+1 |
|
|
* | Allocating a new weakref object can cause existing weakref objects for | Fred Drake | 2004-02-04 | 1 | -3/+16 |
|
|
* | Fix bug in interpretation of the "callback" argument in the constructors for | Fred Drake | 2004-02-03 | 1 | -1/+5 |
|
|
* | Removed two unneeded lines from PyObject_Compare(). | Brett Cannon | 2004-01-27 | 1 | -2/+0 |
|
|
* | Two forgotten Py_DECREF() for two out-of-memory conditions. | Armin Rigo | 2004-01-27 | 1 | -2/+6 |
|
|
* | Revert change accidentally checked in as part of a whitespace normalization | Tim Peters | 2004-01-18 | 1 | -9/+5 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-01-18 | 1 | -5/+9 |
|
|
* | Remove support for SunOS 4. | Skip Montanaro | 2004-01-17 | 1 | -10/+0 |
|
|
* | SF Patch #871704: Py_SequenceFast can mask errors | Raymond Hettinger | 2004-01-11 | 1 | -3/+11 |
|
|
* | [SF #866875] Add a specialized routine for one character | Hye-Shik Chang | 2004-01-05 | 1 | -45/+95 |
|
|
* | Apply pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -8/+4 |
|
|
* | Apply tuple/list pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 2 | -9/+5 |
|
|
* | Cosmetic fix for wrongly indented tabs with ts=4. | Hye-Shik Chang | 2004-01-03 | 1 | -8/+8 |
|
|
* | * Simplify and speedup logic for tp_print. | Raymond Hettinger | 2003-12-31 | 1 | -15/+29 |
|
|
* | Fix gcc 3.3 warnings related to Py_UNICODE_WIDE. | Hye-Shik Chang | 2003-12-29 | 1 | -1/+4 |
|
|
* | complete backout of listobject.c v2.171 | Andrew MacIntyre | 2003-12-28 | 1 | -4/+0 |
|
|
* | Revert previous two checkins to repair test failure. | Jeremy Hylton | 2003-12-26 | 1 | -24/+6 |
|
|
* | use the correct macro to access list size | Andrew MacIntyre | 2003-12-26 | 1 | -1/+1 |
|
|
* | Performance of list([]) in 2.3 came up in a thread on comp.lang.python, | Andrew MacIntyre | 2003-12-25 | 1 | -6/+28 |
|
|
* | Fix unicode.rsplit()'s bug that ignores separater on the end of string when | Hye-Shik Chang | 2003-12-23 | 1 | -1/+1 |
|
|
* | There are places in Python which assume bytes have 8-bits. Formalize that a | Skip Montanaro | 2003-12-22 | 1 | -4/+0 |
|
|
* | Fix broken xmlcharrefreplace by rev 2.204. | Hye-Shik Chang | 2003-12-22 | 1 | -3/+3 |
|
|
* | SF #859573: Reduce compiler warnings on gcc 3.2 and above. | Hye-Shik Chang | 2003-12-19 | 1 | -1/+14 |
|
|
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -37/+0 |
|
|
* | Speedup set.update by using the override mode for PyDict_Merge(). | Raymond Hettinger | 2003-12-15 | 1 | -1/+1 |
|
|
* | Add rsplit method for str and unicode builtin types. | Hye-Shik Chang | 2003-12-15 | 2 | -1/+315 |
|
|
* | Improve algorithm for set.difference when the input is not a set. | Raymond Hettinger | 2003-12-15 | 1 | -43/+43 |
|
|
* | * Refactor set.__contains__() | Raymond Hettinger | 2003-12-13 | 1 | -21/+10 |
|
|
* | Refactor set.discard() and set.remove(). | Raymond Hettinger | 2003-12-13 | 1 | -31/+22 |
|
|
* | Improve argument checking speed. | Raymond Hettinger | 2003-12-13 | 1 | -17/+44 |
|
|
* | Use dictionary specific looping idiom where possible. | Raymond Hettinger | 2003-12-13 | 1 | -114/+40 |
|
|
* | Simplify previous checkin -- a new function was not needed. | Raymond Hettinger | 2003-12-13 | 1 | -26/+1 |
|
|
* | Use PyDict_Contains() instead of PySequence_Contains(). | Raymond Hettinger | 2003-12-13 | 1 | -2/+2 |
|
|
* | * Added a new method flag, METH_COEXIST. | Raymond Hettinger | 2003-12-13 | 5 | -3/+69 |
|
|
* | Fix memory error treatment correctly. Going to dsu_fail causes | Hye-Shik Chang | 2003-12-10 | 1 | -1/+1 |
|
|
* | Fixes and tests for various "holding pointers when arbitrary Python code | Michael W. Hudson | 2003-12-04 | 1 | -35/+46 |
|
|
* | - Removed FutureWarnings related to hex/oct literals and conversions | Guido van Rossum | 2003-11-29 | 3 | -64/+50 |
|
|
* | Make sure the list.sort's decorate step unwinds itself before returning | Raymond Hettinger | 2003-11-28 | 1 | -2/+9 |
|
|
* | Add optional fillchar argument to ljust(), rjust(), and center() string methods. | Raymond Hettinger | 2003-11-26 | 2 | -26/+63 |
|
|
* | Expose dict_contains() and PyDict_Contains() with is about 10% faster | Raymond Hettinger | 2003-11-25 | 2 | -12/+13 |
|
|
* | Factor out more duplicate code. | Raymond Hettinger | 2003-11-24 | 1 | -77/+51 |
|
|
* | Stop GCC warning about int literal that's so long that it becomes an | Guido van Rossum | 2003-11-24 | 1 | -1/+1 |
|
|
* | * Checkin remaining documentation | Raymond Hettinger | 2003-11-24 | 1 | -137/+148 |
|
|
* | * Simplify hash function and add test to show effectiveness of the hash | Raymond Hettinger | 2003-11-23 | 1 | -14/+26 |
|
|
* | - When method objects have an attribute that can be satisfied either | Guido van Rossum | 2003-11-22 | 1 | -28/+30 |
|
|
* | Extend temporary hashability to remove() and discard(). | Raymond Hettinger | 2003-11-22 | 1 | -11/+52 |
|
|
* | Allow temporary hashability for the __contains__ test. | Raymond Hettinger | 2003-11-21 | 1 | -1/+17 |
|
|
* | issubset() and issuperset() to work with general iterables | Raymond Hettinger | 2003-11-21 | 1 | -5/+15 |
|
|
* | Three minor performance improvements: | Raymond Hettinger | 2003-11-20 | 1 | -12/+41 |
|
|
* | SF bug 839548: Bug in type's GC handling causes segfaults. | Tim Peters | 2003-11-20 | 1 | -4/+30 |
|
|