(sst)
| 78 | |
| 79 | @actor |
| 80 | def stress_difference(sst): |
| 81 | copy_one = sst.copy() |
| 82 | stress_delitem(copy_one) |
| 83 | copy_two = sst.copy() |
| 84 | stress_delitem(copy_two) |
| 85 | sst.difference_update(copy_one, copy_two) |
| 86 | |
| 87 | @actor |
| 88 | def stress_discard(sst): |
nothing calls this directly
no test coverage detected