- d4d7900 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
- 14a7d63 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
- c06a6d0 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
- 082a960 fix merge_collapse to actually maintain the invariant it purports to (closes #23515) by Benjamin Peterson · 10 years ago
- 3b9d92a Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
- 819d8d4 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 13 years ago
- 4ac5d2c Backport issue #12973 list_repeat fix from 3.x. by Mark Dickinson · 13 years ago
- c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
- fb50112 #8030: more docstring fix for builtin types. by Ezio Melotti · 15 years ago
- bca1169 #8030: make builtin type docstrings more consistent: use "iterable" instead of "seq(uence)", use "new" to show that set() always returns a new object. by Georg Brandl · 15 years ago
- ac5685e Silence some 'comparison between signed and unsigned' compiler warnings. by Mark Dickinson · 15 years ago
- 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 15 years ago
- c45a0cf grant list.index() a more informative error message #7252 by Benjamin Peterson · 15 years ago
- e2caf1f prevent a rather unlikely segfault by Benjamin Peterson · 15 years ago
- beaf6a0 Issue #7084: Fix a (very unlikely) crash when printing a list from one by Antoine Pitrou · 15 years ago
- b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
- 7989a4d Backport r67478 by Raymond Hettinger · 16 years ago
- d810cdf Docstring changes: Specify exceptions raised by Andrew M. Kuchling · 16 years ago
- 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
- 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
- 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
- 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
- d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
- 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 17 years ago
- 6c0ff8a Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). by Raymond Hettinger · 17 years ago
- 09bde04 Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. by Christian Heimes · 17 years ago
- 48397d6 Use prefix decrement by Christian Heimes · 17 years ago
- b4ee4a1 Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet. by Christian Heimes · 17 years ago
- 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
- a97744c Use the right (portable) definition of the max of a Py_ssize_t. by Thomas Wouters · 17 years ago
- 8d5cf4e Rewrite the list_inline_repeat overflow check slightly differently. by Guido van Rossum · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- 6c87af5 Optimize PyList_AsTuple(). Improve cache performance by doing the by Raymond Hettinger · 17 years ago
- 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
- fe4826f merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError by Christian Heimes · 17 years ago
- 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
- a1e42e1 Fix the overflow checking of list_repeat. by Armin Rigo · 17 years ago
- 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
- a0c0551 Fix a possible segfault from recursing too deep to get the repr of a list. by Brett Cannon · 17 years ago
- 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
- 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 18 years ago
- e7e4e2d Prevent crash if alloc of garbage fails. Found by Typo.pl. by Neal Norwitz · 18 years ago
- 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
- 7fd9607 Move initialization to after the asserts for non-NULL values. by Neal Norwitz · 18 years ago
- 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
- b88cfad Check return of PyMem_MALLOC (garbage) is non-NULL. by Neal Norwitz · 18 years ago
- a00c0b9 Don't leak the list object if there's an error allocating the item storage. Backport candidate by Neal Norwitz · 18 years ago
- ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 19 years ago
- c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
- b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 19 years ago
- 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
- 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
- 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
- eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
- e0e89f7 Revert 42400. by Martin v. Löwis · 19 years ago
- 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
- 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
- a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
- fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
- aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
- a84f3ab SF #1022910: Conserve memory with list.pop() by Raymond Hettinger · 20 years ago
- 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
- f076953 SF patch #1005778, Fix seg fault if list object is modified during list.index() by Neal Norwitz · 20 years ago
- 651dd52 Previous commit was viewed as "perverse". Changed to just cast the unused by Brett Cannon · 20 years ago
- 5ad28e1 Tweak previous patch to silence a warning about the unused left value in the by Brett Cannon · 20 years ago
- 8fc4a91 list_ass_slice(): Document the obscure new intent that deleting a slice by Tim Peters · 20 years ago
- 7357222 list_ass_slice(): The difference between "recycle" and "recycled" was by Tim Peters · 20 years ago
- 8d9eb10 Armin asked for a list_ass_slice review in his checkin, so here's the result. by Tim Peters · 20 years ago
- 1dd04a0 This is a reorganization of list_ass_slice(). It should probably be reviewed, by Armin Rigo · 20 years ago
- a37bbf2 What if you call lst.__init__() while it is being sorted? :-) by Armin Rigo · 20 years ago
- c0aaa2d * Simplify and speed-up list_resize(). Relying on the newly documented by Raymond Hettinger · 20 years ago
- 93677f0 * drop the unreasonable list invariant that ob_item should never come back by Armin Rigo · 20 years ago
- f414fc4 Minor memory leak. by Armin Rigo · 20 years ago
- 51b4ade Fix obscure breakage (relative to 2.3) in listsort: the test for list by Tim Peters · 20 years ago
- b38e2b6 Trimmed trailing whitespace. by Tim Peters · 20 years ago
- 3986d4e PyList_New(): we went to all the trouble of computing and bounds-checking by Tim Peters · 20 years ago
- 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
- 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
- fdfe618 Nits: by Raymond Hettinger · 21 years ago
- 0468e41 SF patch #947476: Apply freelist technique to lists by Raymond Hettinger · 21 years ago
- 45d0b5c Use Py_RETURN_NONE macro where applicable. by Raymond Hettinger · 21 years ago
- 501f02c Small refactoring saving one function() and eliminating some indirection. by Raymond Hettinger · 21 years ago
- 40a0382 * Specialize ins1() into app1() for appends. Saves several unnecessary by Raymond Hettinger · 21 years ago
- 70d172d Get rid of listextend_internal() and explain why the special case by Armin Rigo · 21 years ago
- 435bf58 Make iterators length transparent where possible. by Raymond Hettinger · 21 years ago
- d4ff741 Revert last change. Found an application that was worse off with resize by Raymond Hettinger · 21 years ago
- 0e91643 list_resize() now has an "exact" option for bypassing the overallocation by Raymond Hettinger · 21 years ago
- 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 21 years ago
- 6e058d7 * Eliminate duplicate call to PyObject_Size(). (Spotted by Michael Hudson.) by Raymond Hettinger · 21 years ago