-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: Change print statements to print function calls #4967
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
I can take this if nobody is working on that already... |
go 4 it.... |
@jreback Just one thing: I see that you use |
I am not sure it matters (prob just a typo if that's the case).....prob |
I also changed all the print statements in the code (not just the docs) to |
no code should have print statements, and they would break py3, do you have an example? |
@jreback Not directly in the code but in the comments and docstrings. Also in sphinxexts, scripts, vb_suite... |
ahh....sure go ahead with that ....you can put it in another commit with this one..... just be aware that these are not directly tested so just validate as you go |
Suggestion: Changing
print open('bar.csv').read()
statements toprint(open('bar.csv').read())
in documentation would make the docs more compatible with Python3.X and still keep it compatible with Python2.X.The text was updated successfully, but these errors were encountered: