Return a copy of each string element where all tab characters are replaced by one or more spaces. See also -------- char.expandtabs
(self, tabsize=8)
| 2231 | return endswith(self, suffix, start, end) |
| 2232 | |
| 2233 | def expandtabs(self, tabsize=8): |
| 2234 | """ |
| 2235 | Return a copy of each string element where all tab characters are |
| 2236 | replaced by one or more spaces. |
| 2237 | |
| 2238 | See also |
| 2239 | -------- |
| 2240 | char.expandtabs |
| 2241 | |
| 2242 | """ |
| 2243 | return asarray(expandtabs(self, tabsize)) |
| 2244 | |
| 2245 | def find(self, sub, start=0, end=None): |
| 2246 | """ |
no test coverage detected