Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23277: Remove unused imports in tests. | Serhiy Storchaka | 2016-04-24 | 1 | -6/+1 |
| | |||||
* | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 1 | -2/+0 |
| | | | | Patch by Jon Dufresne. | ||||
* | Issue #21741: Update 147 test modules to use test discovery. | Zachary Ware | 2015-04-13 | 1 | -5/+1 |
| | | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run. | ||||
* | Issue #20006: Fix sporadic failures in test_weakset. | Antoine Pitrou | 2013-12-17 | 1 | -1/+6 |
| | |||||
* | Revert misled test change in f189da5bda26. | Antoine Pitrou | 2013-12-17 | 1 | -1/+0 |
| | |||||
* | add test for inequality | Benjamin Peterson | 2013-05-22 | 1 | -0/+6 |
| | |||||
* | Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive. | Meador Inge | 2012-03-05 | 1 | -11/+23 |
| | |||||
* | Fix some set algebra methods of WeakSet objects. | Antoine Pitrou | 2012-03-04 | 1 | -4/+18 |
| | |||||
* | Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵ | Antoine Pitrou | 2012-03-01 | 1 | -0/+47 |
| | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting. | ||||
* | Delete the iterator, which could accidentally keep a temporary reference to ↵ | Antoine Pitrou | 2012-02-20 | 1 | -0/+1 |
| | | | | the yielded element. | ||||
* | #10360: catch TypeError in WeakSet.__contains__, just like WeakKeyDictionary ↵ | Georg Brandl | 2010-12-03 | 1 | -1/+2 |
| | | | | does. | ||||
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -3/+3 |
| | |||||
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -23/+23 |
| | | | | A patch from Dave Malcolm. | ||||
* | Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against | Antoine Pitrou | 2010-01-08 | 1 | -0/+50 |
| | | | | the destruction of weakref'ed objects while iterating. | ||||
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -40/+40 |
| | |||||
* | Issue 5964: Fixed WeakSet __eq__ comparison to handle non-WeakSet objects. | Robert Schuppenies | 2009-05-17 | 1 | -10/+13 |
| | |||||
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -2/+2 |
| | |||||
* | Ignore test_c_api when checking for set methods. Thanks Brett! | Georg Brandl | 2008-05-18 | 1 | -1/+1 |
| | |||||
* | Better diagnostic. | Georg Brandl | 2008-05-18 | 1 | -1/+2 |
| | |||||
* | Add a test suite for WeakSet mostly derived from test_set and fix some | Georg Brandl | 2008-05-18 | 1 | -0/+311 |
issues in the weakset implementation discovered with it. |