(self)
| 296 | d.rotate() |
| 297 | |
| 298 | def test_index_bug_24913(self): |
| 299 | d = deque('A' * 3) |
| 300 | with self.assertRaises(ValueError): |
| 301 | i = d.index("Hello world", 0, 4) |
| 302 | |
| 303 | def test_insert(self): |
| 304 | # Test to make sure insert behaves like lists |
nothing calls this directly
no test coverage detected