Re: [ovs-dev] [PATCH 2/3] extract-ofp-fields: Port to python3.

2015-05-20 Thread YAMAMOTO Takashi
> Mostly "print foo" -> "print(foo)" and "iteritems() -> items()". The > latter may be less efficient in python2, but we're not dealing with > massive numbers of items here so it shouldn't noticably slow the build. > > Signed-off-by: Joe Stringer Acked-by: YAMAMOTO Takashi _

[ovs-dev] [PATCH 2/3] extract-ofp-fields: Port to python3.

2015-05-20 Thread Joe Stringer
Mostly "print foo" -> "print(foo)" and "iteritems() -> items()". The latter may be less efficient in python2, but we're not dealing with massive numbers of items here so it shouldn't noticably slow the build. Signed-off-by: Joe Stringer --- build-aux/extract-ofp-fields | 22 +++--