summaryrefslogtreecommitdiff
path: root/Lib/test/test_sets.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-4/+5
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-15/+17
* use assert[Not]In where appropriateEzio Melotti2010-01-231-2/+2
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-19/+17
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-17/+19
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-17/+17
* Deprecate the sets module.Brett Cannon2007-01-131-0/+4
* Use absolute importsNeal Norwitz2006-04-031-1/+2
* Teach the sets module to correctly compute s-=s and s^=s as the empty set.Raymond Hettinger2005-08-131-0/+13
* Exercise DocTestSuite's search for __test__.Raymond Hettinger2004-08-071-2/+2
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Add more identity tests.Raymond Hettinger2003-09-241-0/+11
* Improve and expand identity tests.Raymond Hettinger2003-09-211-11/+18
* SF patch #736962: Port tests to unittestRaymond Hettinger2003-08-301-0/+10
* Improvements to set.py:Raymond Hettinger2003-08-171-11/+133
* Keep doctests in sync with the docs.Raymond Hettinger2003-08-161-5/+5
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-32/+24
* TestOnlySetsInBinaryOps: Simplified the non-inplace tests by usingTim Peters2003-03-021-44/+16
* Typo repairs in new code.Tim Peters2003-03-021-3/+7
* SF bug 693121: Set == non-Set is a TypeError.Tim Peters2003-03-021-12/+23
* The doctest was printing Sets, but that's unreliable because setTim Peters2003-03-011-6/+9
* * Add test for __cmp__()Raymond Hettinger2003-01-151-2/+40
* SF 643115: Set._update() had a special case for dictionaries which allowedRaymond Hettinger2002-11-251-0/+3
* remove debugging printJeremy Hylton2002-11-131-2/+0
* Add getstate and setstate implementation to concrete set classes.Jeremy Hylton2002-11-131-1/+9
* Whitespace normalization.Tim Peters2002-11-091-4/+4
* Closes SF bug #628246.Raymond Hettinger2002-11-081-0/+25
* Implemented <, <=, >, >= for sets, giving subset and proper-subsetTim Peters2002-08-251-7/+21
* TestSubset(): Generalized the framework to support testing upcomingTim Peters2002-08-251-10/+23
* Rewrote all remaining assert stmts.Tim Peters2002-08-251-30/+30
* Simplified construction of the test suite.Tim Peters2002-08-251-21/+23
* Simplified code building sets of characters.Tim Peters2002-08-251-5/+5
* Ack! Virtually every test here relied on an assert stmt. assert stmtsTim Peters2002-08-251-60/+60
* Simplified the setup for is-subset testing.Tim Peters2002-08-251-25/+20
* Removed < <= > >= from the API. Implemented as comparisons of theRaymond Hettinger2002-08-241-2/+2
* At Tim Peter's suggestion, propagated GvR's binary operator changes toRaymond Hettinger2002-08-241-0/+32
* Expanded tests for sets of sets.Raymond Hettinger2002-08-241-0/+4
* Add regression test for proper construction of sets of sets.Raymond Hettinger2002-08-211-0/+10
* Rename popitem() to pop(). (An idea from SF patch 597444.)Guido van Rossum2002-08-201-2/+2
* Set classes and their unit tests, from sandbox.Guido van Rossum2002-08-191-0/+568