OSDN Git Service

python: Update for pylint 2.10
authorJohn Snow <jsnow@redhat.com>
Thu, 16 Sep 2021 18:22:47 +0000 (14:22 -0400)
committerJohn Snow <jsnow@redhat.com>
Thu, 16 Sep 2021 19:03:56 +0000 (15:03 -0400)
commit5690b4370b868b339ee95f5330ad423b32e95e81
treed36b1f55bf4ddbff5848acc5bd65cf2b83d67339
parent831aaf24967a49d7750090b9dcfd6bf356f16529
python: Update for pylint 2.10

A few new annoyances. Of note is the new warning for an unspecified
encoding when opening a text file, which actually does indicate a
potentially real problem; see
https://www.python.org/dev/peps/pep-0597/#motivation

Use LC_CTYPE to determine an encoding to use for interpreting QEMU's
terminal output. Note that Python states: "language code and encoding
may be None if their values cannot be determined" -- use a platform
default as a backup.

Notes: Passing encoding=None will generate a suppressed warning on
Python 3.10+ that 'None' should not be passed as the encoding
argument. This behavior may be deprecated in the future and the default
switched to be a ubiquitous UTF-8. Opting in to the locale default will
be done by passing the encoding 'locale', but that isn't available in
3.6 through 3.9. Presumably this warning will be unsuppressed some time
prior to the actual switch and we can re-investigate these issues at
that time if necessary.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Message-id: 20210916182248.721529-2-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
python/qemu/machine/machine.py
python/setup.cfg