(&self, suffix: PyStrRef)
| 938 | |
| 939 | #[pymethod] |
| 940 | fn removesuffix(&self, suffix: PyStrRef) -> Wtf8Buf { |
| 941 | self.as_wtf8() |
| 942 | .py_removesuffix(suffix.as_wtf8(), suffix.byte_len(), |s, p| s.ends_with(p)) |
| 943 | .to_owned() |
| 944 | } |
| 945 | |
| 946 | #[pymethod] |
| 947 | fn isalnum(&self) -> bool { |
nothing calls this directly
no test coverage detected