| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815) | Victor Stinner | 2022-06-16 | 1 | -5/+5 |
|
|
* | bpo-35134: Add Include/cpython/setobject.h header (GH-32384) | Victor Stinner | 2022-04-06 | 1 | -67/+6 |
|
|
* | bpo-43277: Add PySet_CheckExact to the C-API (GH-24598) | Pablo Galindo | 2021-02-20 | 1 | -3/+6 |
|
|
* | bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) | Victor Stinner | 2020-04-29 | 1 | -1/+0 |
|
|
* | bpo-39573: Add Py_IS_TYPE() function (GH-18488) | Dong-hee Na | 2020-02-13 | 1 | -5/+5 |
|
|
* | bpo-29867: Add asserts in PyTuple_GET_SIZE, PyList_GET_SIZE and PySet_GET_SIZ... | Serhiy Storchaka | 2017-04-21 | 1 | -1/+1 |
|
|
* | Clarify comments on setentry invariants. | Raymond Hettinger | 2015-08-01 | 1 | -5/+6 |
|
|
* | Move the set search finger before the smalltable. | Raymond Hettinger | 2015-01-30 | 1 | -2/+2 |
|
|
* | Remove unneeded dummy test from the set search loop (when the hashes match we... | Raymond Hettinger | 2015-01-27 | 1 | -1/+4 |
|
|
* | Issue #23119: Simplify setobject by inlining the special case for unicode eq... | Raymond Hettinger | 2015-01-26 | 1 | -2/+1 |
|
|
* | Issue 23261: Clean-up the hack to store the set.pop() search finger in a has... | Raymond Hettinger | 2015-01-18 | 1 | -3/+2 |
|
|
* | Minor comment clean-up | Raymond Hettinger | 2014-12-29 | 1 | -2/+1 |
|
|
* | Neaten-up setobject.h | Raymond Hettinger | 2014-12-27 | 1 | -45/+39 |
|
|
* | Remove the freelist scheme for setobjects. | Raymond Hettinger | 2013-09-08 | 1 | -1/+0 |
|
|
* | Issue #18772: fix the gdb plugin after the set implementation changes | Antoine Pitrou | 2013-08-24 | 1 | -0/+4 |
|
|
* | Issue18771: Reduce the cost of hash collisions for set objects. | Raymond Hettinger | 2013-08-19 | 1 | -1/+1 |
|
|
* | Put the most important and most frequency accessed struct member first. | Raymond Hettinger | 2013-08-06 | 1 | -1/+1 |
|
|
* | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo... | David Malcolm | 2012-06-22 | 1 | -0/+1 |
|
|
* | Issue #6695: Full garbage collection runs now clear the freelist of set objects. | Antoine Pitrou | 2011-12-16 | 1 | -0/+2 |
|
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -1/+8 |
|
|
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 1 | -8/+5 |
|
|
* | Issue #9612: The set object is now 64-bit clean under Windows. | Antoine Pitrou | 2010-08-17 | 1 | -1/+5 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -31/+31 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-04 | 1 | -1/+5 |
|
|
* | Fixed r60466 | Christian Heimes | 2008-01-31 | 1 | -1/+0 |
|
|
* | Merged revisions 60383-60407 via svnmerge from | Christian Heimes | 2008-01-29 | 1 | -0/+2 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -5/+5 |
|
|
* | Added all PyTypeObjects to the appropriate header files. | Christian Heimes | 2007-11-29 | 1 | -0/+1 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -5/+5 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -1/+2 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -3/+3 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -0/+3 |
|
|
* | Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
|
|
* | Numerous fix-ups to C API and docs. Added tests for C API. | Raymond Hettinger | 2005-08-16 | 1 | -1/+1 |
|
|
* | Add a C API for sets and frozensets. | Raymond Hettinger | 2005-08-16 | 1 | -0/+9 |
|
|
* | * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code. | Raymond Hettinger | 2005-08-07 | 1 | -1/+5 |
|
|
* | Model set.pop() after dict.popitem(). | Raymond Hettinger | 2005-08-02 | 1 | -0/+4 |
|
|
* | * Improve code for the empty frozenset singleton: | Raymond Hettinger | 2005-08-01 | 1 | -2/+1 |
|
|
* | Revised the set() and frozenset() implementaion to use its own internal | Raymond Hettinger | 2005-07-31 | 1 | -13/+45 |
|
|
* | Wrote down the invariants of some common objects whose structure is | Armin Rigo | 2004-10-28 | 1 | -0/+8 |
|
|
* | Make sets and deques weak referencable. | Raymond Hettinger | 2004-05-30 | 1 | -0/+1 |
|
|
* | * Checkin remaining documentation | Raymond Hettinger | 2003-11-24 | 1 | -1/+1 |
|
|
* | Various fixups (most suggested by Armin Rigo). | Raymond Hettinger | 2003-11-17 | 1 | -0/+6 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+26 |
|
|