BUG: Series.iteritems() isn't lazy (original) (raw)
The docstring indicates that it is supposed to be lazy, but we return lzip(iter(self.index), iter(self)). That should be zip(...) right? Or is the docstring wrong?
The docstring indicates that it is supposed to be lazy, but we return lzip(iter(self.index), iter(self)). That should be zip(...) right? Or is the docstring wrong?