Closed mloubout closed 8 years ago
Do we have to use Python 3?
We're not the only one using this, and some (will) use python 3
Anyway, a good point to make is that we shouldn't use print
statements but Devito logger
class
We should never use print
. We should rather use the logger
module. You can use parentheses in there if you think are needed
Hi Please put parenthesis to all the print statements:
print("stuff to print")
notprint "stuff to print"
The second one makes everything crash with python 3.x
I replaced all of it in my current PR but please remember it for the future.