summaryrefslogtreecommitdiffstats
path: root/Objects/tupleobject.c
Commit message (Expand)AuthorAgeFilesLines
* 00147-add-debug-malloc-stats.patchFedora Python maintainers2020-09-291-0/+16
* [2.7] bpo-32137: The repr of deeply nested dict now raises a RuntimeError (GH...Serhiy Storchaka2018-02-021-3/+0
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-151-1/+1
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-081-3/+3
* bpo-29935: Fixed error messages in the index() method of tuple and list (#887...Serhiy Storchaka2017-03-301-2/+2
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
* Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-12/+0
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-4/+2
* PyTuple_Pack() was missing va_end() in its error branch which lead to a resou...Christian Heimes2012-09-101-1/+3
* Revert "Accept None as start and stop parameters for list.index() and tuple.i...Petri Lehtinen2011-11-061-11/+4
* Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-051-4/+11
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-754/+754
* Remove an unneeded variable assignment.Brett Cannon2010-05-051-2/+1
* #8030: more docstring fix for builtin types.Ezio Melotti2010-02-281-4/+4
* Issue #7466: segmentation fault when the garbage collector is calledAntoine Pitrou2009-12-121-1/+2
* The tracking statistics were actually too pessimisticAntoine Pitrou2009-03-231-3/+3
* Issue #4688: Add a heuristic so that tuples and dicts containing onlyAntoine Pitrou2009-03-231-0/+54
* fix tuple.index() error message #5495Benjamin Peterson2009-03-151-1/+1
* Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.Martin v. Löwis2009-01-071-2/+2
* Docstring change: Specify exception raisedAndrew M. Kuchling2008-10-041-1/+3
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-2/+3
* Fixed: sys.getsizeof does not take the actual length of the tuples into account.Robert Schuppenies2008-06-131-0/+12
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-8/+8
* Renamed PyString to PyBytesChristian Heimes2008-05-261-8/+8
* Implemented Martin's suggestion to clear the free lists during the garbage co...Christian Heimes2008-02-141-6/+19
* 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-061-29/+29
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-36/+36
* Fix error introduced by r58288; if a tuple is length 0 return its repr andBrett Cannon2007-09-301-4/+4
* tuple.__repr__ did not consider a reference loop as it is not possible fromBrett Cannon2007-09-301-0/+13
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-2/+10
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-0/+6
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-40/+38
* Variation of patch # 1624059 to speed up checking if an object is a subclassNeal Norwitz2007-02-251-1/+1
* Patch [ 1586791 ] better error msgs for some TypeErrorsGeorg Brandl2006-11-191-2/+3
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-5/+2
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-151-13/+5
* Remove "static forward" declaration. Move constructorsMartin v. Löwis2006-04-111-21/+19
* More low-hanging fruit. Still need to re-arrange some code (or find a betterAnthony Baxter2006-04-111-5/+5
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-171-0/+1
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-2/+5
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-3/+4
* Merge ssize_t branch.Martin v. Löwis2006-02-151-48/+44
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-2/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-7/+12
* Add a final permutation step to the tuple hash function.Raymond Hettinger2004-06-101-0/+1
* Replaced arbitrary addend in tuple_hash with one that is known to generateRaymond Hettinger2004-06-041-1/+9