(self)
| 888 | self.type2test(b'--abc--')) |
| 889 | |
| 890 | def test_ljust(self): |
| 891 | # Fill character can be either bytes or bytearray (issue 12380) |
| 892 | b = self.type2test(b'abc') |
| 893 | for fill_type in (bytes, bytearray): |
| 894 | self.assertEqual(b.ljust(7, fill_type(b'-')), |
| 895 | self.type2test(b'abc----')) |
| 896 | |
| 897 | def test_rjust(self): |
| 898 | # Fill character can be either bytes or bytearray (issue 12380) |
nothing calls this directly
no test coverage detected