Re: [dpdk-dev] [PATCH] doc: fix build with python 3.8

2019-12-11 Thread Thomas Monjalon
10/12/2019 14:33, Robin Jarry: > 2019-12-10, Thomas Monjalon: > > 10/12/2019 13:00, Bruce Richardson: > > > On Mon, Dec 09, 2019 at 10:00:00PM +0100, Thomas Monjalon wrote: > > > > After upgrading to python-3.8.0, a syntax mismatch is revealed: > > > > > > > > doc/guides/conf.py:240: SyntaxWarning

Re: [dpdk-dev] [PATCH] doc: fix build with python 3.8

2019-12-10 Thread Robin Jarry
2019-12-10, Thomas Monjalon: > 10/12/2019 13:00, Bruce Richardson: > > On Mon, Dec 09, 2019 at 10:00:00PM +0100, Thomas Monjalon wrote: > > > After upgrading to python-3.8.0, a syntax mismatch is revealed: > > > > > > doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal. > > > Did yo

Re: [dpdk-dev] [PATCH] doc: fix build with python 3.8

2019-12-10 Thread Thomas Monjalon
10/12/2019 13:00, Bruce Richardson: > On Mon, Dec 09, 2019 at 10:00:00PM +0100, Thomas Monjalon wrote: > > After upgrading to python-3.8.0, a syntax mismatch is revealed: > > > > doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal. > > Did you mean "!="? > > if value is not '':

Re: [dpdk-dev] [PATCH] doc: fix build with python 3.8

2019-12-10 Thread Bruce Richardson
On Mon, Dec 09, 2019 at 10:00:00PM +0100, Thomas Monjalon wrote: > After upgrading to python-3.8.0, a syntax mismatch is revealed: > > doc/guides/conf.py:240: SyntaxWarning: "is not" with a literal. > Did you mean "!="? > if value is not '': > > Replacing "is not" with "!=" seems the righ