(self)
| 200 | self.assert_sort(tuples) |
| 201 | |
| 202 | def test_ticket_1380(self): |
| 203 | # ticket:1380 regression: would raise a KeyError |
| 204 | |
| 205 | tuples = [(id(i), i) for i in range(3)] |
| 206 | self.assert_sort(tuples) |
| 207 | |
| 208 | def test_find_cycle_one(self): |
| 209 | node1 = "node1" |
nothing calls this directly
no test coverage detected