<div dir="ltr">If you sync to tip, you will pull in r251121, which disables the use of the print statement in Python.  This is because in Python 3, the print statement has been removed in favor of the print function.  You will see that that the top of every file, the line "from __future__ import print_function" has been added.  This line causes the interpreter to require the print function instead of the print statement.  <div><br></div><div>A quick primer on the print function:</div><div><br></div><div>Old way:  print x</div><div>New way: print(x)</div><div><br></div><div>Old way: print x,    # no newline at end of file</div><div>New way: print(x, end='')</div><div><br></div><div>Old way: print << my_file, foo    # print to a file</div><div>New way: print(foo, file=my_file)</div><div><br></div><div>Let me know if anyone has any questions or issues with this patch.</div><div><br></div></div>