summaryrefslogtreecommitdiff
path: root/Lib/test/test_set.py
Commit message (Expand)AuthorAgeFilesLines
* Fix obscure set crashers (#4420). Backport of d56b3cafb1e6, reviewed by Raym...Éric Araujo2011-03-221-0/+34
* Merged revisions 83385-83389,83391 via svnmerge fromGeorg Brandl2010-08-011-1/+1
* Issue 8436: set.__init__ accepts keyword argsRaymond Hettinger2010-04-181-0/+2
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-0/+4
* #7092: silence some more py3k warnings.Ezio Melotti2010-03-171-15/+11
* Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set.Victor Stinner2010-03-131-1/+1
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+0
* use assert[Not]In where appropriateEzio Melotti2010-01-231-31/+31
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-20/+19
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-19/+20
* Issue 6573: Fix set.union() for cases where self is in the argument chain.Raymond Hettinger2009-07-271-0/+4
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-55/+55
* fill in actual issue number in testsAntoine Pitrou2009-01-011-1/+1
* Issue #3680: Reference cycles created through a dict, set or deque iterator d...Antoine Pitrou2009-01-011-2/+15
* Issue #4740: Use HIGHEST_PROTOCOL in pickle test.Hirokazu Yamamoto2008-12-271-1/+1
* #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as t...Amaury Forgeot d'Arc2008-10-071-0/+11
* Multi-arg form for set.difference() and set.difference_update().Raymond Hettinger2008-06-111-0/+14
* Handle the case with zero arguments.Raymond Hettinger2008-06-111-0/+6
* Let set.intersection() and set.intersection_update() take multiple input argu...Raymond Hettinger2008-06-091-0/+6
* Let set.union() and set.update() accept multiple inputs.Raymond Hettinger2008-06-091-0/+7
* Don't try to close a non-open file.Neal Norwitz2008-03-251-4/+4
* Expand tests to include nested graph structures.Raymond Hettinger2008-01-241-0/+106
* Add set.isdisjoint()Raymond Hettinger2007-11-081-2/+47
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-1/+1
* Add test and fix for fromkeys() optional argument.Raymond Hettinger2007-03-211-0/+3
* Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...Raymond Hettinger2007-03-201-0/+4
* Whitespace normalization.Tim Peters2007-03-121-2/+2
* Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().Raymond Hettinger2007-02-191-0/+20
* Whitespace normalization.Tim Peters2007-01-301-2/+2
* SF #1486663 -- Allow keyword args in subclasses of set() and frozenset().Raymond Hettinger2007-01-111-0/+11
* For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing.Raymond Hettinger2006-12-301-0/+26
* Add test for SF bug 1576657Raymond Hettinger2006-12-081-0/+11
* Try to repair more new buildbot failures in "x86 OpenBSD trunk", dueTim Peters2006-04-111-1/+1
* SF patch #1458476 with modifications based on discussions in python-dev. ThisBarry Warsaw2006-03-301-1/+1
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-1/+3
* Improve test coverage. Hope the test_file changes work the same on windows.Neal Norwitz2005-11-271-0/+12
* No longer ignore exceptions raised by comparisons during key lookup.Raymond Hettinger2005-09-161-0/+17
* Numerous fix-ups to C API and docs. Added tests for C API.Raymond Hettinger2005-08-161-1/+6
* * Fix SF #1257731. Make __contains__(), remove(), and discard() only doRaymond Hettinger2005-08-121-0/+13
* * Add short-circuit code for in-place operations with self (such asRaymond Hettinger2005-08-111-0/+12
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-0/+20
* Add test for hash commutativity.Raymond Hettinger2005-07-051-0/+10
* SF patch #1200018: Restore GC support to set objectsRaymond Hettinger2005-06-181-0/+10
* SF 1062353: set pickling problemsRaymond Hettinger2004-11-091-3/+9
* Use Py_CLEAR(). Add unrelated test.Raymond Hettinger2004-09-281-0/+3
* Use floor division operator.Raymond Hettinger2004-09-271-1/+1
* * fix the print testRaymond Hettinger2004-07-091-0/+14
* Make sets and deques weak referencable.Raymond Hettinger2004-05-301-0/+8
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Whitespace normalization.Tim Peters2004-01-181-1/+1