summaryrefslogtreecommitdiff
path: root/Include/setobject.h
Commit message (Expand)AuthorAgeFilesLines
* bpo-29867: Add asserts in PyTuple_GET_SIZE, PyList_GET_SIZE and PySet_GET_SIZ...Serhiy Storchaka2017-04-221-1/+1
* Clarify comments on setentry invariants.Raymond Hettinger2015-08-011-5/+6
* Move the set search finger before the smalltable.Raymond Hettinger2015-01-291-2/+2
* Remove unneeded dummy test from the set search loop (when the hashes match we...Raymond Hettinger2015-01-261-1/+4
* Issue #23119: Simplify setobject by inlining the special case for unicode eq...Raymond Hettinger2015-01-251-2/+1
* Issue 23261: Clean-up the hack to store the set.pop() search finger in a has...Raymond Hettinger2015-01-181-3/+2
* Minor comment clean-upRaymond Hettinger2014-12-281-2/+1
* Neaten-up setobject.hRaymond Hettinger2014-12-261-45/+39
* Remove the freelist scheme for setobjects.Raymond Hettinger2013-09-071-1/+0
* Issue #18772: fix the gdb plugin after the set implementation changesAntoine Pitrou2013-08-241-0/+4
* Issue18771: Reduce the cost of hash collisions for set objects.Raymond Hettinger2013-08-191-1/+1
* Put the most important and most frequency accessed struct member first.Raymond Hettinger2013-08-051-1/+1
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+1
* Issue #6695: Full garbage collection runs now clear the freelist of set objects.Antoine Pitrou2011-12-161-0/+2
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+8
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-8/+5
* Issue #9612: The set object is now 64-bit clean under Windows.Antoine Pitrou2010-08-171-1/+5
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-31/+31
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-041-1/+5
* Fixed r60466Christian Heimes2008-01-311-1/+0
* Merged revisions 60383-60407 via svnmerge fromChristian Heimes2008-01-291-0/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-5/+5
* Added all PyTypeObjects to the appropriate header files.Christian Heimes2007-11-291-0/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-5/+5
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-0/+3
* Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.Neal Norwitz2006-03-041-1/+1
* Numerous fix-ups to C API and docs. Added tests for C API.Raymond Hettinger2005-08-161-1/+1
* Add a C API for sets and frozensets.Raymond Hettinger2005-08-161-0/+9
* * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code.Raymond Hettinger2005-08-071-1/+5
* Model set.pop() after dict.popitem().Raymond Hettinger2005-08-021-0/+4
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-2/+1
* Revised the set() and frozenset() implementaion to use its own internalRaymond Hettinger2005-07-311-13/+45
* Wrote down the invariants of some common objects whose structure isArmin Rigo2004-10-281-0/+8
* Make sets and deques weak referencable.Raymond Hettinger2004-05-301-0/+1
* * Checkin remaining documentationRaymond Hettinger2003-11-241-1/+1
* Various fixups (most suggested by Armin Rigo).Raymond Hettinger2003-11-171-0/+6
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+26