(self)
| 821 | self.assertEqual(b.rsplit(), [b'\x1c\x1d\x1e\x1f']) |
| 822 | |
| 823 | def test_partition(self): |
| 824 | b = self.type2test(b'mississippi') |
| 825 | self.assertEqual(b.partition(b'ss'), (b'mi', b'ss', b'issippi')) |
| 826 | self.assertEqual(b.partition(b'w'), (b'mississippi', b'', b'')) |
| 827 | |
| 828 | def test_rpartition(self): |
| 829 | b = self.type2test(b'mississippi') |
nothing calls this directly
no test coverage detected