(self)
| 2283 | self.assertEqual(b'a b'.split(memoryview(b' ')), [b'a', b'b']) |
| 2284 | |
| 2285 | def test_rsplit_bytearray(self): |
| 2286 | self.assertEqual(b'a b'.rsplit(memoryview(b' ')), [b'a', b'b']) |
| 2287 | |
| 2288 | def test_return_self(self): |
| 2289 | # bytearray.replace must always return a new bytearray |
nothing calls this directly
no test coverage detected