(self)
| 181 | |
| 182 | @functools.cached_property |
| 183 | def _meta(self): |
| 184 | delimiter = " " if self.pat is None else self.pat |
| 185 | meta = meta_nonempty(self.frame._meta) |
| 186 | meta = self.frame._meta._constructor( |
| 187 | [delimiter.join(["a"] * (self.n + 1))], |
| 188 | index=meta.iloc[:1].index, |
| 189 | ) |
| 190 | return make_meta( |
| 191 | getattr(meta.str, self.attr)(n=self.n, expand=self.expand, pat=self.pat) |
| 192 | ) |
nothing calls this directly
no test coverage detected