Partition each element in `self` around `sep`. See also -------- partition
(self, sep)
| 2403 | return asarray(lstrip(self, chars)) |
| 2404 | |
| 2405 | def partition(self, sep): |
| 2406 | """ |
| 2407 | Partition each element in `self` around `sep`. |
| 2408 | |
| 2409 | See also |
| 2410 | -------- |
| 2411 | partition |
| 2412 | """ |
| 2413 | return asarray(partition(self, sep)) |
| 2414 | |
| 2415 | def replace(self, old, new, count=None): |
| 2416 | """ |
no test coverage detected