-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
deprecate iterkv? #4372
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
Comments
the reason it exists IIRC, |
Hmm, I see. That's brutal. I suppose it's possible to write a custom fixer to avoid iteritems -> items? I don't know I've never looked beyond the available ones. Also might be possible to remove once there's a single codebase Python >= 2.7. |
@cpcloud know anything about 2to3 do we have an open item for making code base 3 compat? it's prob pretty close I think |
a quick glance at a github search for "python 3" suggests no...i remember @hayd had a few i think pandas is fairly close... biggest issue might be the use of all the non iterator-functions like
it would be great to not have to use 2to3...would make life much easier for testing and would speed up the travis builds |
Semi OT: how is it decided when an older python version shouldn't be supported anymore? |
@cpcloud Actually, Python 2.6 will stop being supported in October 2013, so it might be a good time to revisit support for it then. For 2to3 compat, could use |
@jtratner hmm i don't know enough to even guesstimate what that could possibly break...maybe nothing, maybe lots of things 😄 |
prob won't stop supporting py2.6 anyone soon though (though if specif issues are problematic then can just raise on those) |
@cpcloud maybe need a make codebase py3 compat without 2to3 |
sounds good |
sorry i thought u meant "close it now" |
you meant close as in "close to finished" |
yes but might as well close anyhow (and put in a todo in the py3 issue) this |
okie doke |
see #4375 |
Is there any reason to keep around the iterkv shadow for iteritems?
The text was updated successfully, but these errors were encountered: