On Wed, Jan 06, 2016 at 03:50:22PM -0500, Russell Bryant wrote: > Python 3 removed support for tuple parameter unpacking. > > https://www.python.org/dev/peps/pep-3113/ > > Instead of: > > def foo((a, b)): > print(a) > print(b) > > you should do: > > def foo(a_b): > a, b = a_b > print(a) > print(b) > > but in both uses here, the values were never used so the fix is even > simpler. > > Signed-off-by: Russell Bryant <russ...@ovn.org>
Acked-by: Ben Pfaff <b...@ovn.org> _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev