Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add test for hash commutativity. | Raymond Hettinger | 2005-07-05 | 1 | -0/+10 | |
| | ||||||
* | SF patch #1200018: Restore GC support to set objects | Raymond Hettinger | 2005-06-18 | 1 | -0/+10 | |
| | | | | | Reverts 1.26 and 1.27. And adds cycle testing. | |||||
* | SF 1062353: set pickling problems | Raymond Hettinger | 2004-11-09 | 1 | -3/+9 | |
| | | | | Support automatic pickling of dictionaries in instance of set subclasses. | |||||
* | Use Py_CLEAR(). Add unrelated test. | Raymond Hettinger | 2004-09-28 | 1 | -0/+3 | |
| | ||||||
* | Use floor division operator. | Raymond Hettinger | 2004-09-27 | 1 | -1/+1 | |
| | ||||||
* | * fix the print test | Raymond Hettinger | 2004-07-09 | 1 | -0/+14 | |
| | | | | * add more __init__ tests | |||||
* | Make sets and deques weak referencable. | Raymond Hettinger | 2004-05-30 | 1 | -0/+8 | |
| | ||||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -2/+2 | |
| | | | | From SF patch #852334. | |||||
* | Whitespace normalization. | Tim Peters | 2004-01-18 | 1 | -1/+1 | |
| | ||||||
* | Strengthen the test for hash effectiveness | Raymond Hettinger | 2003-12-31 | 1 | -4/+4 | |
| | ||||||
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -5/+5 | |
| | | | | sorted() becomes a regular function instead of a classmethod. | |||||
* | * Checkin remaining documentation | Raymond Hettinger | 2003-11-24 | 1 | -14/+59 | |
| | | | | | | | * Add more tests * Refactor and neaten the code a bit. * Rename union_update() to update(). * Improve the algorithms (making them a closer to sets.py). | |||||
* | * Simplify hash function and add test to show effectiveness of the hash | Raymond Hettinger | 2003-11-23 | 1 | -13/+72 | |
| | | | | | | | | | | | | | | | function. * Add a better test for deepcopying. * Add tests to show the __init__() function works like it does for list and tuple. Add related test. * Have shallow copies of frozensets return self. Add related test. * Have frozenset(f) return f if f is already a frozenset. Add related test. * Beefed-up some existing tests. | |||||
* | Extend temporary hashability to remove() and discard(). | Raymond Hettinger | 2003-11-22 | 1 | -0/+10 | |
| | | | | Brings the functionality back in line with sets.py. | |||||
* | Allow temporary hashability for the __contains__ test. | Raymond Hettinger | 2003-11-21 | 1 | -0/+2 | |
| | | | | (Requested by Alex Martelli.) | |||||
* | issubset() and issuperset() to work with general iterables | Raymond Hettinger | 2003-11-21 | 1 | -0/+4 | |
| | ||||||
* | Various fixups (most suggested by Armin Rigo). | Raymond Hettinger | 2003-11-17 | 1 | -0/+25 | |
| | ||||||
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+1183 | |
* Install the unittests, docs, newsitem, include file, and makefile update. * Exercise the new functions whereever sets.py was being used. Includes the docs for libfuncs.tex. Separate docs for the types are forthcoming. |