(self, width: SupportsIndex)
| 187 | return [BitString(word) for word in super().split(sep, maxsplit)] |
| 188 | |
| 189 | def zfill(self, width: SupportsIndex) -> BitString: |
| 190 | return BitString(super().zfill(width), False) |
| 191 | |
| 192 | def __repr__(self) -> str: |
| 193 | return f'BitString("{self.__str__()}")' |