| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue 1242657: list(obj) can swallow KeyboardInterrupt | Raymond Hettinger | 2009-02-02 | 1 | -0/+4 |
|
|
* | Merged revisions 67326,67498,67531-67532,67538,67553-67554,67556-67557 via sv... | Georg Brandl | 2008-12-05 | 1 | -8/+9 |
|
|
* | Merged revisions 66766-66767,66771-66772,66774,66776,66783-66787,66790,66793,... | Benjamin Peterson | 2008-10-04 | 1 | -3/+6 |
|
|
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ... | Nick Coghlan | 2008-07-15 | 1 | -1/+1 |
|
|
* | Merge in release25-maint r60793: | Gregory P. Smith | 2008-06-11 | 1 | -3/+19 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -10/+10 |
|
|
* | Some style nits. Also clarify in the docstrings what __sizeof__ does. | Georg Brandl | 2008-06-01 | 1 | -1/+1 |
|
|
* | Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. | Robert Schuppenies | 2008-06-01 | 1 | -0/+12 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -10/+10 |
|
|
* | A little reformating of Py3k warnings | Benjamin Peterson | 2008-04-27 | 1 | -1/+1 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -3/+1 |
|
|
* | Make Py3k warnings consistent w.r.t. punctuation; also respect the | Georg Brandl | 2008-03-25 | 1 | -1/+1 |
|
|
* | Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. | Raymond Hettinger | 2008-03-19 | 1 | -1/+1 |
|
|
* | Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). | Raymond Hettinger | 2008-03-18 | 1 | -0/+5 |
|
|
* | Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. | Christian Heimes | 2008-02-24 | 1 | -2/+4 |
|
|
* | Use prefix decrement | Christian Heimes | 2008-02-08 | 1 | -2/+1 |
|
|
* | Added some statistics code to dict and list object code. I wanted to test how... | Christian Heimes | 2008-02-07 | 1 | -0/+29 |
|
|
* | Unified naming convention for free lists and their limits. All free lists | Christian Heimes | 2008-02-06 | 1 | -11/+13 |
|
|
* | Use the right (portable) definition of the max of a Py_ssize_t. | Thomas Wouters | 2008-01-25 | 1 | -1/+1 |
|
|
* | Rewrite the list_inline_repeat overflow check slightly differently. | Guido van Rossum | 2008-01-25 | 1 | -6/+7 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -83/+83 |
|
|
* | Optimize PyList_AsTuple(). Improve cache performance by doing the | Raymond Hettinger | 2007-12-15 | 1 | -5/+5 |
|
|
* | Fix Issue 1045. | Raymond Hettinger | 2007-12-06 | 1 | -11/+1 |
|
|
* | merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ... | Christian Heimes | 2007-12-05 | 1 | -2/+3 |
|
|
* | Backport of _abccoll.py by Benjamin Arangueren, issue 1383. | Guido van Rossum | 2007-11-22 | 1 | -9/+1 |
|
|
* | Fix the overflow checking of list_repeat. | Armin Rigo | 2007-10-17 | 1 | -4/+7 |
|
|
* | Add a bunch of GIL release/acquire points in tp_print implementations and for | Brett Cannon | 2007-09-17 | 1 | -1/+10 |
|
|
* | Fix a possible segfault from recursing too deep to get the repr of a list. | Brett Cannon | 2007-09-10 | 1 | -0/+3 |
|
|
* | Improve extended slicing support in builtin types and classes. Specifically: | Thomas Wouters | 2007-08-28 | 1 | -13/+30 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -92/+87 |
|
|
* | Variation of patch # 1624059 to speed up checking if an object is a subclass | Neal Norwitz | 2007-02-25 | 1 | -1/+1 |
|
|
* | Patch [ 1586791 ] better error msgs for some TypeErrors | Georg Brandl | 2006-11-19 | 1 | -6/+9 |
|
|
* | Prevent crash if alloc of garbage fails. Found by Typo.pl. | Neal Norwitz | 2006-10-28 | 1 | -0/+5 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -8/+3 |
|
|
* | Move initialization to after the asserts for non-NULL values. | Neal Norwitz | 2006-08-19 | 1 | -2/+4 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -7/+5 |
|
|
* | Check return of PyMem_MALLOC (garbage) is non-NULL. | Neal Norwitz | 2006-08-12 | 1 | -2/+6 |
|
|
* | Don't leak the list object if there's an error allocating the item storage. ... | Neal Norwitz | 2006-06-12 | 1 | -1/+3 |
|
|
* | Remove now-unused variables from tp_traverse and tp_clear methods. | Tim Peters | 2006-04-15 | 1 | -1/+0 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 1 | -14/+6 |
|
|
* | Replace INT_MAX with PY_SSIZE_T_MAX. | Martin v. Löwis | 2006-04-13 | 1 | -2/+2 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 1 | -81/+93 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -10/+8 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -2/+2 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -4/+4 |
|
|
* | Revert 42400. | Martin v. Löwis | 2006-02-16 | 1 | -2/+2 |
|
|
* | Support %zd in PyErr_Format and PyString_FromFormat. | Martin v. Löwis | 2006-02-16 | 1 | -2/+1 |
|
|
* | Get rid of compiler warnings (gcc 3.3.4 on x86) | Neal Norwitz | 2006-02-16 | 1 | -2/+2 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -138/+136 |
|
|
* | Renamed _length_cue() to __length_hint__(). See: | Armin Rigo | 2006-02-11 | 1 | -3/+3 |
|
|