(self)
| 904 | self.assertEqual(b.split(), [b'\x1c\x1d\x1e\x1f']) |
| 905 | |
| 906 | def test_rsplit_unicodewhitespace(self): |
| 907 | b = self.type2test(b"\x09\x0A\x0B\x0C\x0D\x1C\x1D\x1E\x1F") |
| 908 | self.assertEqual(b.rsplit(), [b'\x1c\x1d\x1e\x1f']) |
| 909 | |
| 910 | def test_partition(self): |
| 911 | b = self.type2test(b'mississippi') |
nothing calls this directly
no test coverage detected