(self)
| 908 | self.assertEqual(b.rsplit(), [b'\x1c\x1d\x1e\x1f']) |
| 909 | |
| 910 | def test_partition(self): |
| 911 | b = self.type2test(b'mississippi') |
| 912 | self.assertEqual(b.partition(b'ss'), (b'mi', b'ss', b'issippi')) |
| 913 | self.assertEqual(b.partition(b'w'), (b'mississippi', b'', b'')) |
| 914 | |
| 915 | def test_rpartition(self): |
| 916 | b = self.type2test(b'mississippi') |
nothing calls this directly
no test coverage detected