[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 02/27] python: update pylint configuration
|
From: |
Paolo Bonzini |
|
Subject: |
[PATCH v2 02/27] python: update pylint configuration |
|
Date: |
Tue, 16 May 2023 12:58:43 +0200 |
From: John Snow <jsnow@redhat.com>
Pylint 2.17.x decided that SocketAddrT was a bad name for a Type Alias for some
reason. Sure, fine, whatever.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20230511035435.734312-3-jsnow@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
python/setup.cfg | 1 +
1 file changed, 1 insertion(+)
diff --git a/python/setup.cfg b/python/setup.cfg
index 9e923d97628f..3f36502954e4 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -132,6 +132,7 @@ good-names=i,
fd, # fd = os.open(...)
c, # for c in string: ...
T, # for TypeVars. See pylint#3401
+ SocketAddrT, # Not sure why this is invalid.
[pylint.similarities]
# Ignore imports when computing similarities.
--
2.40.1
- [PATCH v2 01/27] python: shut up "pip install" during "make check-minreqs", Paolo Bonzini, 2023/05/16
- [PATCH v2 03/27] python: add mkvenv.py, Paolo Bonzini, 2023/05/16
- [PATCH v2 06/27] mkvenv: add ensure subcommand, Paolo Bonzini, 2023/05/16
- [PATCH v2 05/27] mkvenv: add nested venv workaround, Paolo Bonzini, 2023/05/16
- [PATCH v2 04/27] mkvenv: add better error message for broken or missing ensurepip, Paolo Bonzini, 2023/05/16
- [PATCH v2 02/27] python: update pylint configuration,
Paolo Bonzini <=
- [PATCH v2 07/27] mkvenv: add --diagnose option to explain "ensure" failures, Paolo Bonzini, 2023/05/16
- [PATCH v2 13/27] tests/vm: Configure netbsd to use Python 3.10, Paolo Bonzini, 2023/05/16
- [PATCH v2 08/27] mkvenv: add console script entry point generation, Paolo Bonzini, 2023/05/16
- [PATCH v2 15/27] python: add vendor.py utility, Paolo Bonzini, 2023/05/16
- [PATCH v2 20/27] tests: Use configure-provided pyvenv for tests, Paolo Bonzini, 2023/05/16
- [PATCH v2 11/27] mkvenv: work around broken pip installations on Debian 10, Paolo Bonzini, 2023/05/16
- [PATCH v2 19/27] qemu.git: drop meson git submodule, Paolo Bonzini, 2023/05/16
- [PATCH v2 23/27] configure: add --enable-pypi and --disable-pypi, Paolo Bonzini, 2023/05/16