Re: [ovs-dev] [PATCH 4/9] python: Fix print function compatibility.

2016-01-11 Thread Ben Pfaff
On Wed, Jan 06, 2016 at 03:50:24PM -0500, Russell Bryant wrote: > The print statement from Python 2 is a function in Python 3. Enable > print function support for Python 2 and convert print statements to > function calls. > > Enable the H233 flake8 warning. If the hacking plugin is installed, >

[ovs-dev] [PATCH 4/9] python: Fix print function compatibility.

2016-01-06 Thread Russell Bryant
The print statement from Python 2 is a function in Python 3. Enable print function support for Python 2 and convert print statements to function calls. Enable the H233 flake8 warning. If the hacking plugin is installed, this will generate warnings for print statement usage not compatible with Py