Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Series.iteritems() isn't lazy #6760

Closed
TomAugspurger opened this issue Apr 1, 2014 · 2 comments · Fixed by #6761
Closed

BUG: Series.iteritems() isn't lazy #6760

TomAugspurger opened this issue Apr 1, 2014 · 2 comments · Fixed by #6761

Comments

@TomAugspurger
Copy link
Contributor

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?

@jreback
Copy link
Contributor

jreback commented Apr 1, 2014

hmm should be using izip (I think same in py3)

see if anything breaks

@TomAugspurger
Copy link
Contributor Author

Compat defines zip to be izip if Py2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants