(
self,
old: str,
new: str,
count: SupportsIndex = -1,
)
| 171 | return BitString(super().removesuffix(suffix), False) |
| 172 | |
| 173 | def replace( |
| 174 | self, |
| 175 | old: str, |
| 176 | new: str, |
| 177 | count: SupportsIndex = -1, |
| 178 | ) -> BitString: |
| 179 | new = BitString(new) |
| 180 | return BitString(super().replace(old, new, count), False) |
| 181 | |
| 182 | def split( |
| 183 | self, |
no test coverage detected