summaryrefslogtreecommitdiff
path: root/Objects/setobject.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)Miss Islington (bot)2018-05-021-1/+3
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-131-4/+4
* bpo-31095: Fix potential crash during GC (GH-3197)INADA Naoki2017-09-041-0/+3
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
* remove some copyright notices supserseded by the toplevel onesBenjamin Peterson2016-01-011-3/+0
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-4/+13
* Issue 8743: Improve interoperability between sets and the collections.Set ab...Raymond Hettinger2014-05-251-6/+2
* Silence compiler warning for unused declaration.Raymond Hettinger2013-08-041-1/+0
* remove unused variableBenjamin Peterson2011-10-301-1/+1
* Fix the return value of set_discard (issue #10519)Petri Lehtinen2011-10-301-2/+3
* Avoid unnecessary recursive function calls (closes #10519)Petri Lehtinen2011-10-301-2/+2
* Fix obscure set crashers (#4420). Backport of d56b3cafb1e6, reviewed by Raym...Éric Araujo2011-03-221-10/+23
* Revert r86726. Sorry about interfering with the rc.Armin Rigo2010-11-241-1/+1
* A no-op change. It looks like this call was not meant to be a recursiveArmin Rigo2010-11-241-1/+1
* Issue8757: Implicit set-to-frozenset conversion not thread-safe.Raymond Hettinger2010-08-061-9/+3
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1823/+1823
* Issue 8436: set.__init__ accepts keyword argsRaymond Hettinger2010-04-181-0/+2
* Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set.Victor Stinner2010-03-131-1/+15
* The set types can also be called without arguments.Georg Brandl2010-02-281-2/+4
* #8030: make builtin type docstrings more consistent: use "iterable" instead o...Georg Brandl2010-02-281-2/+2
* Issue 7263: Fix set.intersection() docstring.Raymond Hettinger2009-11-181-2/+2
* Issue 6573: Fix set.union() for cases where self is in the argument chain.Raymond Hettinger2009-07-271-1/+1
* Issue #3680: Reference cycles created through a dict, set or deque iterator d...Antoine Pitrou2009-01-011-4/+12
* #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as t...Amaury Forgeot d'Arc2008-10-071-4/+7
* Mention exception in docstringAndrew M. Kuchling2008-10-031-1/+2
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-151-1/+1
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-101-0/+16
* Multi-arg form for set.difference() and set.difference_update().Raymond Hettinger2008-06-111-14/+39
* Handle the case with zero arguments.Raymond Hettinger2008-06-111-0/+3
* Let set.intersection() and set.intersection_update() take multiple input argu...Raymond Hettinger2008-06-091-3/+36
* Let set.union() and set.update() accept multiple inputs.Raymond Hettinger2008-06-091-15/+38
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-15/+15
* Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics wh...Raymond Hettinger2008-05-301-0/+4
* Renamed PyString to PyBytesChristian Heimes2008-05-261-15/+15
* Frozensets do not benefit from autoconversion.Raymond Hettinger2008-05-081-3/+3
* dict.copy() rises from the ashes. Revert r60687.Raymond Hettinger2008-02-121-15/+1
* Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go ...Raymond Hettinger2008-02-091-1/+15
* Unified naming convention for free lists and their limits. All free listsChristian Heimes2008-02-061-10/+12
* Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_S...Amaury Forgeot d'Arc2008-02-031-1/+6
* Factor-out common code with a new macroRaymond Hettinger2008-01-281-4/+4
* Make PySet_Add() work with frozensets.Raymond Hettinger2008-01-281-15/+4
* Revert PySet_Add() changes.Raymond Hettinger2008-01-261-0/+5
* Update test code for change to PySet_Add().Raymond Hettinger2008-01-261-1/+0
* Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to build...Raymond Hettinger2008-01-261-4/+0
* Changes 54857 and 54840 broke code and were reverted in Py2.5 just beforeRaymond Hettinger2008-01-251-7/+7
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-16/+16
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-8/+1
* Reposition the decref (spotted by eagle-eye norwitz).Raymond Hettinger2007-11-081-1/+2