(self)
| 2029 | self.assertEqual(b'a b'.split(memoryview(b' ')), [b'a', b'b']) |
| 2030 | |
| 2031 | def test_rsplit_bytearray(self): |
| 2032 | self.assertEqual(b'a b'.rsplit(memoryview(b' ')), [b'a', b'b']) |
| 2033 | |
| 2034 | def test_return_self(self): |
| 2035 | # bytearray.replace must always return a new bytearray |
nothing calls this directly
no test coverage detected