(self)
| 4130 | |
| 4131 | @derived_from(pd.Series) |
| 4132 | def __iter__(self): |
| 4133 | frame = self.optimize() |
| 4134 | for i in range(self.npartitions): |
| 4135 | s = frame.get_partition(i).compute() |
| 4136 | yield from s |
| 4137 | |
| 4138 | def __getitem__(self, key): |
| 4139 | if isinstance(key, Series) or self.npartitions == 1: |
nothing calls this directly
no test coverage detected