(self)
| 4149 | |
| 4150 | @derived_from(pd.Series) |
| 4151 | def __iter__(self): |
| 4152 | frame = self.optimize() |
| 4153 | for i in range(self.npartitions): |
| 4154 | s = frame.get_partition(i).compute() |
| 4155 | yield from s |
| 4156 | |
| 4157 | def __getitem__(self, key): |
| 4158 | if isinstance(key, Series) or self.npartitions == 1: |
nothing calls this directly
no test coverage detected