[ovs-dev] [PATCH] Start fixing some Python 3 compatibility issues

2015-05-13 Thread Terry Wilson
This patch fixes just the Python 3 problems found by running python3 setup.py install There are still many other issues to be fixed, but this is a start. Signed-off-by: Terry Wilson --- python/compat/argparse.py | 2 +- python/ovs/daemon.py | 31 --- pytho

Re: [ovs-dev] [PATCH] Start fixing some Python 3 compatibility issues

2015-05-13 Thread Russell Bryant
On 05/13/2015 12:45 PM, Terry Wilson wrote: > This patch fixes just the Python 3 problems found by running > > python3 setup.py install > > There are still many other issues to be fixed, but this is a start. > > Signed-off-by: Terry Wilson All of the changes look correct to me. Thanks! Ack

Re: [ovs-dev] [PATCH] Start fixing some Python 3 compatibility issues

2015-05-16 Thread Ben Pfaff
On Wed, May 13, 2015 at 11:45:09AM -0500, Terry Wilson wrote: > This patch fixes just the Python 3 problems found by running > > python3 setup.py install > > There are still many other issues to be fixed, but this is a start. > > Signed-off-by: Terry Wilson Currently OVS requires Python 2.4

Re: [ovs-dev] [PATCH] Start fixing some Python 3 compatibility issues

2015-09-29 Thread Russell Bryant
On 05/17/2015 01:03 AM, Ben Pfaff wrote: > On Wed, May 13, 2015 at 11:45:09AM -0500, Terry Wilson wrote: >> This patch fixes just the Python 3 problems found by running >> >> python3 setup.py install >> >> There are still many other issues to be fixed, but this is a start. >> >> Signed-off-by: Te