On Fri, Nov 03, 2023 at 08:04:13PM -0400, Laine Stump wrote: > flake8 (run on all python scripts as a part of the syntax checks) > version 6.1.0 (on macOS 14) issued many complaints like this on the > new rpcgen python scripts: > > [...]libvirt/scripts/rpcgen/rpcgen/lexer.py:57:17: E721 do not compare types, for exact checks use `is` / `is not`, for instance checks use `isinstance()` > > This patch changes all [type] == [type] to use "is" instead of "==", > and similarly to use "is not" instead of "!=". > > (flake8 5.03, e.g. on Fedora 38, is just fine with using "==" and "!=", > but python on both likes "is" and "is not") Doh, we have '--no-suite syntax-check' because had a dedicated codestyle job, so I didn't detect this problem with newest flake8. > > Fixes: commit v9.9.0-24-g8ec79e5e14 > Fixes: commit v9.9.0-22-gca3f025011 > Fixes: commit v9.9.0-21-g031efb691f > Fixes: commit v9.9.0-20-g8c8b97685b > > Signed-off-by: Laine Stump <laine@xxxxxxxxxx> > --- > scripts/rpcgen/rpcgen/ast.py | 4 +- > scripts/rpcgen/rpcgen/generator.py | 26 ++++++------ > scripts/rpcgen/rpcgen/lexer.py | 2 +- > scripts/rpcgen/rpcgen/parser.py | 68 +++++++++++++++--------------- > 4 files changed, 50 insertions(+), 50 deletions(-) Reviewed-by: Daniel P. Berrangé <berrange@xxxxxxxxxx> With regards, Daniel -- |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :| |: https://libvirt.org -o- https://fstop138.berrange.com :| |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :| _______________________________________________ Devel mailing list -- devel@xxxxxxxxxxxxxxxxx To unsubscribe send an email to devel-leave@xxxxxxxxxxxxxxxxx