For each element in `self`, return a copy with the trailing characters removed. See also -------- char.rstrip
(self, chars=None)
| 2484 | return rsplit(self, sep, maxsplit) |
| 2485 | |
| 2486 | def rstrip(self, chars=None): |
| 2487 | """ |
| 2488 | For each element in `self`, return a copy with the trailing |
| 2489 | characters removed. |
| 2490 | |
| 2491 | See also |
| 2492 | -------- |
| 2493 | char.rstrip |
| 2494 | |
| 2495 | """ |
| 2496 | return asarray(rstrip(self, chars)) |
| 2497 | |
| 2498 | def split(self, sep=None, maxsplit=None): |
| 2499 | """ |
no test coverage detected