(self, index)
| 120 | return new_collection(CatBlockwise(self._series, sep, na_rep, *others)) |
| 121 | |
| 122 | def __getitem__(self, index): |
| 123 | return self._function_map("__getitem__", index) |
| 124 | |
| 125 | |
| 126 | class CatBlockwise(Blockwise): |
nothing calls this directly
no test coverage detected