(sst)
| 100 | |
| 101 | @actor |
| 102 | def stress_intersection(sst): |
| 103 | copy_one = sst.copy() |
| 104 | stress_delitem(copy_one) |
| 105 | copy_two = sst.copy() |
| 106 | stress_delitem(copy_two) |
| 107 | sst.intersection_update(copy_one, copy_two) |
| 108 | |
| 109 | @actor |
| 110 | def stress_symmetric_difference(sst): |
nothing calls this directly
no test coverage detected