summaryrefslogtreecommitdiff
path: root/Lib/test/test_set.py
Commit message (Expand)AuthorAgeFilesLines
* Issue 6573: Fix set.union() for cases where self is in the argument chain.Raymond Hettinger2009-07-271-0/+4
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-59/+59
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-271-10/+0
* Merged revisions 68128 via svnmerge fromAntoine Pitrou2009-01-011-2/+15
* Issue #4740: Use HIGHEST_PROTOCOL in pickle test. This enables test for proto...Hirokazu Yamamoto2008-12-271-1/+1
* Issue #1721812: Binary operations and copy operations on set/frozensetRaymond Hettinger2008-11-161-4/+9
* remove some more references to __cmp__ #1717Benjamin Peterson2008-10-161-3/+0
* merge from trunkBenjamin Peterson2008-10-111-0/+11
* Fix a potential NameError.Thomas Heller2008-07-151-1/+1
* Merged revisions 64089,64098,64100-64102,64113,64115-64116,64118,64120,64132,...Amaury Forgeot d'Arc2008-06-171-0/+20
* Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,...Georg Brandl2008-06-101-0/+13
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-9/+9
* Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,...Christian Heimes2008-03-251-2/+2
* Issues 2186 and 2187. Move map() from itertools to builtins.Raymond Hettinger2008-03-131-2/+2
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-0/+106
* Fixed issue #1564: The set implementation should special-case PyUnicode inste...Christian Heimes2007-12-101-0/+42
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-101-2/+47
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-8/+8
* Patch by Keir Mierle so that sets can be compared to other objects that knowGuido van Rossum2007-08-231-0/+36
* Change the repr() of frozenset instances (and set subclasses)Guido van Rossum2007-08-071-1/+1
* Simplify various spots where: str() is called on somethingWalter Dörwald2007-06-111-8/+8
* Fix test_set.Guido van Rossum2007-05-241-4/+4
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-15/+15
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-8/+8
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-2/+9
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-5/+5
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-0/+20
* Some more tests pass now. (Also test_compiler.py with -u all.)Guido van Rossum2007-02-091-3/+3
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-2/+2
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-151-0/+11
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Excise the sets module. SF #1500611 by Collin Winter.Guido van Rossum2007-01-101-1/+0
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-0/+29
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+11
* Fix str() and repr() of empty sets.Georg Brandl2006-08-281-1/+1
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-3/+8
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-13/+10
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+2
* 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