(self)
| 975 | self.type2test(b'--abc--')) |
| 976 | |
| 977 | def test_ljust(self): |
| 978 | # Fill character can be either bytes or bytearray (issue 12380) |
| 979 | b = self.type2test(b'abc') |
| 980 | for fill_type in (bytes, bytearray): |
| 981 | self.assertEqual(b.ljust(7, fill_type(b'-')), |
| 982 | self.type2test(b'abc----')) |
| 983 | |
| 984 | def test_rjust(self): |
| 985 | # Fill character can be either bytes or bytearray (issue 12380) |
nothing calls this directly
no test coverage detected