| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python313-pylint | Distribution: openSUSE Tumbleweed |
| Version: 4.0.5 | Vendor: openSUSE |
| Release: 2.1 | Build date: Thu Mar 12 10:41:09 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 4753769 | Source RPM: python-pylint-4.0.5-2.1.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://github.com/pylint-dev/pylint | |
| Summary: Syntax and style checker for Python code | |
Pylint analyzes Python source code looking for bugs and signs of poor quality. Pylint is a python tool that checks if a module satisfies a coding standard. Pylint can be seen as another PyChecker since nearly all tests you can do with PyChecker can also be done with Pylint. But Pylint offers some more features, like checking line-code's length, checking if variable names are well-formed according to your coding standard, or checking if declared interfaces are truly implemented, and much more (see the complete check list). The big advantage with Pylint is that it is highly configurable, customizable, and you can easily write a small plugin to add a personal feature.
GPL-2.0-or-later
* Thu Mar 12 2026 Dirk Müller <dmueller@suse.com>
- update upper bound for isort
* Mon Mar 02 2026 Dirk Müller <dmueller@suse.com>
- update to 4.0.5:
* Fix possibly-used-before-assignment false positive when using
self.fail() in tests.
* Fixed false positive for ``logging-unsupported-format`` when
no arguments are provided to logging functions.
* According to Python's logging documentation, no formatting is
performed when no arguments are supplied, so strings like
``logging.error("%test")`` are valid.
* Fix a false positive for ``invalid-name`` where a dataclass
field typed with ``Final`` was evaluated against the
``class_const`` regex instead of the ``class_attribute`` regex.
* Avoid emitting `unspecified-encoding` (W1514) when `py-
version` is 3.15+.
* Fix `--known_third_party` config being ignored.
* Fixed dynamic color mapping for "fail-on" messages when using
multiple reporter/output formats.
* Mon Jan 26 2026 Dirk Müller <dmueller@suse.com>
- update to 4.0.4:
* Fixed false positive for ``invalid-name`` where module-level
constants were incorrectly classified as variables when a
class-level attribute with the same name exists.
* Closes #10719
* Fix a false positive for ``invalid-name`` on an UPPER_CASED
name inside an ``if`` branch that assigns an object.
* Closes #10745
* Mon Nov 17 2025 Steve Kowalik <steven.kowalik@suse.com>
- Update to 4.0.3:
* Add Enum dunder methods _generate_next_value_, _missing_, _numeric_repr_,
_add_alias_, and _add_value_alias_ to the list passed to
- -good-dunder-names.
* Fixed false positive for invalid-name with typing.Annotated.
* Fix false positive for f-string-without-interpolation with template
strings when using format spec.
* Fix a false positive when an UPPER_CASED class attribute was raising an
invalid-name when typed with Final.
* Fix a false positive for unbalanced-tuple-unpacking when a tuple is
assigned to a function call and the structure of the function's return
value is ambiguous.
* Make 'ignore' option work as expected again.
* Fix crash for consider-using-assignment-expr when a variable annotation
without assignment is used as the if test expression.
* Fix crash for prefer-typing-namedtuple and consider-math-not-float when
a slice object is called.
* Fix false positive for invalid-name on a partially uninferable
module-level constant.
* Fix a false positive for invalid-name on exclusive module-level
assignments composed of three or more branches.
* Fix false positive for invalid-name for TypedDict instances.
* Fix false-positive for bare-name-capture-pattern if a case guard is used.
* Check enums created with the Enum() functional syntax to pass against the
- -class-rgx for the invalid-name check, like other enums.
* Pylint now supports Python 3.14.
* Pylint's inference engine (astroid) is now much more precise,
understanding implicit booleanness and ternary expressions. The required
astroid version is now 4.0.0.
* Handling of invalid-name at the module level was patchy. Now,
module-level constants that are reassigned are treated as variables and
checked against --variable-rgx rather than --const-rgx. Module-level
lists, sets, and objects can pass against either regex.
* invalid-name now distinguishes module-level constants that are assigned
only once from those that are reassigned and now applies --variable-rgx
to the latter.
* The unused pylintrc argument to PyLinter.__init__() is deprecated and
will be removed.
* pyreverse Run was changed to no longer call sys.exit() in its __init__.
* The suggestion-mode option was removed, as pylint now always emits
user-friendly hints instead of false-positive error messages.
* The async.py checker module has been renamed to async_checker.py since
async is a Python keyword and cannot be imported directly. This allows
for better testing and extensibility of the async checker functionality.
* The message-id of continue-in-finally was changed from E0116 to W0136.
The warning is now emitted for every Python version since it will raise a
syntax warning in Python 3.14.
* Removed support for nmp.NaN alias for numpy.NaN being recognized in
nan-comparison.
* Version requirement for isort has been bumped to >=5.0.0.
* comparison-of-constants now uses the unicode from the ast instead of
reformatting from the node's values preventing some bad formatting due to
utf-8 limitation.
* The use-implicit-booleaness-not-x checks now distinguish between
comparisons used in boolean contexts and those that are not, enabling
them to provide more accurate refactoring suggestions.
* The verbose option now outputs the filenames of the files that have been
checked.
* colorized reporter now colorizes messages/categories that have been
configured as fail-on in red inverse.
* Enhanced support for @property decorator in pyreverse to correctly
display return types of annotated properties when generating class
diagrams.
* Handle deferred evaluation of annotations in Python 3.14.
* pyreverse: add support for colorized output when using output format mmd
(MermaidJS) and html.
* pypy 3.11 is now officially supported.
* Add support for Python 3.14.
* Add naming styles for ParamSpec and TypeVarTuple that align with the
TypeVar style.
* Add match-statements checker and the following message:
bare-name-capture-pattern.
* Add new check async-context-manager-with-regular-with to detect async
context managers used with regular with statements instead of async with.
* Add break-in-finally warning. Using break inside the finally clause will
raise a syntax warning in Python 3.14.
* Add new checks for invalid uses of class patterns in match.
* Add additional checks for suboptimal uses of class patterns in match.
* Add a consider-math-not-float message. float("nan") and float("inf") are
slower than their counterpart math.inf and math.nan by a factor of 4
(notwithstanding the initial import of math) and they are also not well
typed when using mypy.
* Fix a false positive for used-before-assignment when a variable defined
under an if and via a named expression (walrus operator) is used later
when guarded under the same if test.
* Fix no-name-in-module for members of concurrent.futures with Python 3.14.
* Fix false negative for used-before-assignment when a TYPE_CHECKING import
is used as a type annotation prior to erroneous usage.
* Match cases are now counted as edges in the McCabe graph and will
increase the complexity accordingly.
* Check module-level constants with type annotations for invalid-name.
* Fix false negative where function-redefined (E0102) was not reported for
functions with a leading underscore.
* We now raise a logging-too-few-args for format string with no
interpolation arguments at all.
* Fix false negative for used-before-assignment when a function is defined
inside a TYPE_CHECKING guard block and used later.
* Fix a false negative for possibly-used-before-assignment when a variable
is conditionally defined and later assigned to a type-annotated variable.
* Fix false negative for deprecated-module when a __import__ method is used
instead of import sentence.
* Remove support for launching pylint with Python 3.9.
* Fix used-before-assignment for PEP 695 type aliases and parameters.
* No longer flag undeprecated functions in importlib.resources as
deprecated.
* Fix false positive inconsistent-return-statements when using quit() or
exit() functions.
* Fix false positive undefined-variable (E0602) for for-loop variable
shadowing patterns like for item in item: when the variable was
previously defined.
* Fixed crash in 'unnecessary-list-index-lookup' when starting an
enumeration using minus the length of an iterable inside a dict
comprehension when the len call was only made in this dict comprehension,
and not elsewhere.
* Sun Sep 14 2025 Dirk Müller <dmueller@suse.com>
- update to 3.3.8:
* Fix false positives for `possibly-used-before-assignment`
when variables are exhaustively assigned within a `match` block.
* Fix false positive for `missing-raises-doc` and `missing-
yield-doc` when the method length is less than docstring-min-
length.
* Fix a false positive for ``unused-variable`` when multiple
except handlers bind the same name under a try block.
* Fix false-negative for ``used-before-assignment`` with ``from
__future__ import annotations`` in function definitions.
* Fix a bug in Pyreverse where aggregations and associations
were included in diagrams regardless of the selected
- -filter-mode (such as PUB_ONLY, ALL, etc.).
* Fix double underscores erroneously rendering as bold in
pyreverse's Mermaid output.
* Mon Aug 25 2025 Markéta Machová <mmachova@suse.com>
- Convert to libalternatives on SLE-16-based and newer systems
* Thu May 15 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.3.7
* Comparisons between two calls to `type()` won't raise an
``unidiomatic-typecheck`` warning anymore, consistent with
the behavior applied only for ``==`` previously.
* Fixed a crash when importing a class decorator that did not
exist with the same name as a class attribute after the class
definition.
* Fix a crash caused by malformed format strings when using
`.format` with keyword arguments.
* Using a slice as a class decorator now raises a ``not-callable``
message instead of crashing. A lot of checks that dealt with
decorators (too many to list) are now shortcut if the decorator
can't immediately be inferred to a function or class definition.
* The algorithm used for ``no-member`` suggestions is now more
efficient and cuts the calculation when the distance score is
already above the threshold.
* Tue Apr 08 2025 Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.3.6:
* Fix a false positive for used-before-assignment when an inner function's
return type * annotation is a class defined at module scope.
* Fix false positives for use-implicit-booleaness-not-comparison,
use-implicit-booleaness-not-comparison-to-string and
use-implicit-booleaness-not-comparison-to-zero when chained comparisons
are checked.
* Fix a false positive for invalid-getnewargs-ex-returned when the tuple or
dict has been assigned to a name.
* Remove getopt and optparse from the list of deprecated modules.
* Fixed conditional import x.y causing false positive
possibly-used-before-assignment.
* Fix a crash when something besides a class is found in an except handler.
* Fixed raising invalid-name when using camelCase for private methods with
two leading underscores.
* Fixes "skipped files" count calculation; the previous method was
displaying an arbitrary number.
* Fixes a crash that occurred when pylint was run in a container on a host
with cgroupsv2 and restrictions on CPU usage.
* Relaxed the requirements for isort so pylint can benefit from isort 6.
* Fix false positives for undefined-variable for classes using Python 3.12
generic type syntax.
* Fix a false positive for use-implicit-booleaness-not-len. No lint should
be emitted for generators (len is not defined for generators).
* Fix Unable to import 'collections.abc' (import-error) on Python 3.13.1.
* Fix a false positive for potential-index-error when an indexed iterable
contains a starred element that evaluates to more than one item.
* Fixes the issue with --source-root option not working when the source
files are in a subdirectory of the source root (e.g. when using a /src
layout).
* Thu Sep 26 2024 Ben Greiner <code@bnavigator.de>
- Revert restriction to python3.
* Wed Sep 25 2024 ecsos <ecsos@opensuse.org>
- Fix build error under Leap.
* Tue Sep 24 2024 Dirk Müller <dmueller@suse.com>
- update to 3.3.1:
* Fix regression causing some f-strings to not be inferred as
strings.
- update to 3.3.0:
* We migrated ``symilar`` to argparse, from getopt, so the
error and help output changed (for the better).
We exit with 2 instead of sometime 1, sometime 2.
The error output is not captured by the runner anymore.
It's not possible to use a value for the boolean options
anymore (``--ignore-comments 1`` should become
``--ignore-comments``).
* Add new `declare-non-slot` error which reports when a class
has a `__slots__` member and a type hint on the class is not
present in `__slots__`.
* Added `too-many-positional-arguments` to allow distinguishing
the configuration for too many total arguments
(with keyword-only params specified after `*`) from the
configuration for too many positional-or-keyword or
positional-only arguments.
* Add `using-exception-group-in-unsupported-version` and
`using-generic-type-syntax-in-unsupported-version` for uses
of Python 3.11+ or 3.12+ features on lower supported versions
provided with `--py-version`.
* Add `using-assignment-expression-in-unsupported-version` for
uses of `:=` (walrus operator) on Python versions below 3.8
provided with `--py-version`.
* Add `using-positional-only-args-in-unsupported-version` for
uses of positional-only args on Python versions below 3.8
provided with `--py-version`.
* Add ``unnecessary-default-type-args`` to the ``typing``
extension to detect the use of unnecessary default type args
for ``typing.Generator`` and ``typing.AsyncGenerator``.
* Fix computation of never-returning function: `Never` is
handled in addition to `NoReturn`, and priority is given to
the explicit `--never-returning-functions` option.
* Fix a false negative for `await-outside-async` when await is
inside Lambda.
* Fix a false negative for ``duplicate-argument-name`` by
including ``positional-only``, ``*args`` and ``**kwargs``
arguments in the check.
* Fix false negative for `multiple-statements` when multiple
statements are present on `else` and `finally` lines of
`try`.
* Fix false negatives when `isinstance` does not have exactly
two arguments.
* pylint now emits a `too-many-function-args` or `no-value-for-
parameter` appropriately for `isinstance` calls.
* `--enable` with `--disable=all` now produces an error, when
an unknown msg code is used. Internal `pylint` messages are
no longer affected by `--disable=all`.
* Impossible to compile regexes for paths in the configuration
or argument given to pylint won't crash anymore but raise an
argparse error and display the error message from
``re.compile`` instead.
* Fix a bug where a ``tox.ini`` file with pylint configuration
was ignored and it exists in the current directory.
* ``.cfg`` and ``.ini`` files containing a ``Pylint``
configuration may now use a section named ``[pylint]``. This
enhancement impacts the scenario where these file types are
used as defaults when they are present and have not been
explicitly referred to, using the ``--rcfile`` option.
* Improve file discovery for directories that are not python
packages.
* Remove support for launching pylint with Python 3.8.
* Code that supports Python 3.8 can still be linted with the
``--py-version=3.8`` setting.
* Add support for Python 3.13.
* All variables, classes, functions and file names containing
the word 'similar', when it was, in fact, referring to
'symilar' (the standalone program for the duplicate-code
check) were renamed to 'symilar'.
* Remove old-style classes (Python 2) code and remove check for
new-style class since everything is new-style in Python 3.
Updated doc for exception checker to remove reference to new
style class.
- update to 3.2.7:
* Fixed a false positive `unreachable` for `NoReturn` coroutine
functions.
* Fix crash in refactoring checker when calling a lambda bound
as a method.
* Fix a crash in ``undefined-loop-variable`` when providing the
``iterable`` argument to ``enumerate()``.
* Fix to address indeterminacy of error message in case a
module name is same as another in a separate namespace.
- drop support-astroid-3.3.patch pytest-8.patch: upstream
* Mon Aug 12 2024 Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.2.6:
* Quiet false positives for unexpected-keyword-arg when pylint cannot
determine which of two or more dynamically defined classes is being
instantiated.
* Fix a false positive for missing-param-doc where a method which is
decorated with typing.overload was expected to have a docstring
specifying its parameters.
* Fix a regression that raised invalid-name on class attributes merely
overriding invalid names from an ancestor.
* Treat assert_never() the same way when imported from typing_extensions.
* Fix a false positive for consider-using-min-max-builtin when the
assignment target is an attribute.
* Fix an AssertionError arising from properties that return partial
functions.
* Fix a crash when a subclass extends __slots__.
- Refresh pytest-8.patch.
- Add patch support-astroid-3.3.patch:
* Support astroid >= 3.3.0.
* Tue Jul 09 2024 Daniel Garcia <daniel.garcia@suse.com>
- Add new patch to fix failing tests with pytest 8, pytest-8.patch
gh#pylint-dev/pylint#9576
- Skip some tests that still are failing with pytest 8,
gh#pylint-dev/pylint#9545
* Sun Jun 30 2024 Dirk Müller <dmueller@suse.com>
- update to 3.2.5:
* Fixed a false positive ``unreachable-code`` when using
``typing.Any`` as return type in python 3.8, the
``typing.NoReturn`` are not taken into account
anymore for python 3.8 however.
* Prevent emitting ``possibly-used-before-assignment`` when
relying on names only potentially not defined in conditional
blocks guarded by functions annotated with ``typing.Never``
or ``typing.NoReturn``.
- update to 3.2.3:
* Classes with only an Ellipsis (``...``) in their body do not
trigger 'multiple-statements' anymore if they are inlined
* Fix a false positive for ``redefined-outer-name`` when there
is a name defined in an exception-handling block which shares
the same name as a local variable that has been defined in a
function body.
* Fix a false positive for ``use-yield-from`` when using the
return value from the ``yield`` atom.
- update to 3.2.2:
* Fix multiple false positives for generic class syntax added
in Python 3.12 (PEP 695).
* Exclude context manager without cleanup from
``contextmanager-generator-missing-cleanup`` checks.
- update to 3.2.1:
* Exclude if/else branches containing terminating functions
(e.g. `sys.exit()`) from `possibly-used-before-assignment`
checks.
* Don't emit ``typevar-name-incorrect-variance`` warnings for
PEP 695 style TypeVars.
* The variance is inferred automatically by the type checker.
* Adding ``_co`` or ``_contra`` suffix can help to reason about
TypeVar.
- update to 3.2.0:
* Understand `six.PY2` and `six.PY3` for conditional imports.
* Github can use to automatically annotate code. Use it with
`pylint --output-format=github` on your Github Workflows.
* Add check ``possibly-used-before-assignment`` when relying on
names after an ``if/else`` switch when one branch failed to
define the name, raise, or return.
* Checks for generators that use contextmanagers that don't
handle cleanup properly.
* Is meant to raise visibilty on the case that a generator is
not fully exhausted and the contextmanager is not cleaned up
properly.
* A contextmanager must yield a non-constant value and not
handle cleanup for GeneratorExit.
* The using generator must attempt to use the yielded context
value `with x() as y` and not just `with x()`.
* Fri Mar 22 2024 Dirk Müller <dmueller@suse.com>
- update to 3.1.0:
* Two new checks--``use-yield-from``, ``deprecated-
attribute``-- and a smattering of bug fixes.
* Skip ``consider-using-join`` check for non-empty separators
if an ``suggest-join-with-non-empty-separator`` option is set
to ``no``.
* Discover ``.pyi`` files when linting.
* Check ``TypeAlias`` and ``TypeVar`` (PEP 695) nodes for
``invalid-name``.
* Support for resolving external toml files named pylintrc.toml
and .pylintrc.toml.
* Check for `.clear`, `.discard`, `.pop` and `remove` methods
being called on a set while it is being iterated over.
* New message `use-yield-from` added to the refactoring
checker. This message is emitted when yielding from a loop
can be replaced by `yield from`.
* Added a ``deprecated-attribute`` message to check deprecated
attributes in the stdlib.
* Exempt ``TypedDict`` from ``typing_extensions`` from ``too-
many-ancestor`` checks.
* Extend broad-exception-raised and broad-exception-caught to
except*.
* Fix a false-negative for unnecessary if blocks using a
different than expected ordering of arguments.
* For "import X", it will report "(standard/third party/first
party/local) import X"
* For "import X.Y" and "from X import Y", it will report
"(standard/third party/first party/local) import X.Y"
* The import category is specified to provide explanation as to
why pylint has issued the message and guidence to the
developer on how to fix the problem.
* Fix a crash when an enum class which is also decorated with a
``dataclasses.dataclass`` decorator is defined.
* Mon Dec 18 2023 Dirk Müller <dmueller@suse.com>
- update to 3.0.3:
* Fixed false positive for ``unnecessary-lambda`` when the call
has keyword arguments but not the lambda.
* Fixed incorrect suggestion for shallow copy in unnecessary-
comprehension
* After changing b = [x for x in a] to b = a based on the
suggestion, the script now prints [0, 2, 3]. The correct
suggestion should be use list(a) to preserve the original
behavior.
* Fix false positives for ``undefined-variable`` and ``unused-
argument`` for classes and functions using Python 3.12 generic
type syntax.
* Fixed ``pointless-string-statement`` false positive for
docstrings on Python 3.12 type aliases.
* Fix false positive for ``invalid-exception-operation`` when
concatenating tuples of exception types.
* Fix a bug where pylint was unable to walk recursively through
a directory if the directory has an `__init__.py` file.
* Mon Nov 27 2023 Dirk Müller <dmueller@suse.com>
- update to 3.0.2:
* Fix ``used-before-assignment`` false positive for generic
type syntax (PEP 695, Python 3.12).
* Escape special symbols and newlines in messages.
* Fixes suggestion for ``nested-min-max`` for expressions with
additive operators, list and dict comprehensions.
* Fixes ignoring conditional imports with ``ignore-imports=y``.
* Emit ``inconsistent-quotes`` for f-strings with 3.12
interpreter only if targeting pre-3.12 versions.
* Fri Oct 20 2023 ecsos <ecsos@opensuse.org>
- Update to 3.0.1:
* False Positives Fixed
- Fixed false positive for inherit-non-class for generic Protocols.
Closes #9106
* Other Changes
- Fix a crash when an enum class which is also decorated with a dataclasses.dataclass decorator is defined.
Closes #9100
- Update to 3.0.0:
- Pylint now support python 3.12 officially.
- The required astroid version is now 3.0.0
For all chaanges see:
https://github.com/pylint-dev/pylint/releases/tag/v3.0.0
- Changes from 2.17.7
2.17.7 is the last release before we only support pylint 3.0.0 or superior and python 3.8 or superior.
* False Positives Fixed
- Fix a regression in pylint 2.17.6 / astroid 2.15.7 causing various
messages for code involving TypeVar.
Closes #9069
* Other Bug Fixes
- Fix crash in refactoring checker when unary operand used with variable in for
loop.
Closes #9074
- Changes from 2.17.6
* Other Bug Fixes
- When parsing comma-separated lists of regular expressions in the config,
ignore commas that are inside braces since those indicate quantifiers, not
delineation between expressions.
Closes #7229
- sys.argv is now always correctly considered as impossible to infer
(instead of using the actual values given to pylint).
Closes #9047
- Don't show class fields more than once in Pyreverse diagrams.
Closes #8189
- Don't show arrows more than once in Pyreverse diagrams.
Closes #8522
- Don't show duplicate type annotations in Pyreverse diagrams.
Closes #8888
- Don't add Optional to | annotations with None in Pyreverse diagrams.
Closes #9014
- Changes from 2.17.5
* False Positives Fixed
- Fix a false positive for unused-variable when there is an import in a
if TYPE_CHECKING: block and allow-global-unused-variables is set to
no in the configuration.
Closes #8696
- Fix false positives generated when supplying arguments as **kwargs to IO
calls like open().
Closes #8719
- Fix a false positive where pylint was ignoring method calls annotated as
NoReturn during the inconsistent-return-statements check.
Closes #8747
- Exempt parents with only type annotations from the invalid-enum-extension
message.
Closes #8830
* Other Bug Fixes
- Fixed crash when a call to super() was placed after an operator (e.g.
not).
Closes #8554
- Fix crash for modified-while-iterating checker when deleting
members of a dict returned from a call.
Closes #8598
- Fix crash in invalid-metaclass check when a metaclass had duplicate
bases.
Closes #8698
- Avoid consider-using-f-string on modulos with brackets in template.
Closes #8720.
- Fix a crash when __all__ exists but cannot be inferred.
Closes #8740
- Fix crash when a variable is assigned to a class attribute of identical name.
Closes #8754
- Fixed a crash when calling copy.copy() without arguments.
Closes #8774
* Other Changes
- Fix a crash when a nonlocal is defined at module-level.
Closes #8735
* Thu Jun 01 2023 Ben Greiner <code@bnavigator.de>
- Update test setup: rerun flaky pyreverse tests
* Mon May 08 2023 Dirk Müller <dmueller@suse.com>
- update to 2.17.4:
* Fix a false positive for ``bad-dunder-name`` when there is a
user-defined ``__index__`` method.
* ``pyreverse``: added escaping of vertical bar character in
annotation labels
* produced by DOT printer to ensure it is not treated as field
separator of record-based nodes.
* Fixed a crash when generating a configuration file:
* ``tomlkit.exceptions.TOMLKitError: Can't add a table to a
dotted key`` caused by tomlkit ``v0.11.8``.
* Mon May 08 2023 Johannes Kastl <kastl@b1-systems.de>
- add sle15_python_module_pythons
* Thu May 04 2023 Dirk Müller <dmueller@suse.com>
- update to 2.17.3:
* Fix `unused-argument` false positive when `__new__` does not
use all the arguments of `__init__`.
* Fix ``unused-import`` false positive for usage of
``six.with_metaclass``.
* `logging-not-lazy` is not longer emitted for explicitly
concatenated string arguments.
* Fix false positive for isinstance-second-argument-not-valid-
type when union types contains None.
* Fixed `unused-import` so that it observes the `dummy-
variables-rgx` option.
* `Union` typed variables without assignment are no longer
treated as `TypeAlias`.
* Fix false positive for ``positional-only-arguments-expected``
when a function contains both a positional-only parameter
that has a default value, and ``**kwargs``.
* Fix false positive for ``keyword-arg-before-vararg`` when a
positional-only parameter with a default value precedes ``*args``.
* Improve output of ``consider-using-generator`` message for
``min()` calls with ``default`` keyword.
* Mon Apr 17 2023 Dirk Müller <dmueller@suse.com>
- update to 2.17.2:
* invalid-name now allows for integers in typealias
names:
* now valid: Good2Name, GoodName2.
* still invalid: _1BadName.
* No longer consider Union as type annotation as type alias
for naming checks.
* unnecessary-lambda no longer warns on lambdas which use
its parameters in their body (other than the final arguments),
e.g. lambda foo: (bar if foo else baz)(foo).
* Fix a crash in pyreverse when "/" characters are used in the
output filename e.g pyreverse -o png -p name/ path/to/project.
* Add new option (--show-stdlib, -L) to pyreverse.
* This is similar to the behavior of --show-builtin in that
standard library modules are now not included by default,
and this option will include them.
* Adds asyncSetUp to the default defining-attr-methods
list to silence
* attribute-defined-outside-init warning when using
* unittest.IsolatedAsyncioTestCase.
* invalid-name now allows for integers in typealias
names:
* now valid: Good2Name, GoodName2.
* still invalid: _1BadName.
* No longer consider Union as type annotation as type alias
for naming checks.
* unnecessary-lambda no longer warns on lambdas which use
its parameters in their body (other than the final arguments),
e.g. lambda foo: (bar if foo else baz)(foo).
* --clear-cache-post-run now also clears LRU caches for
pylint utilities holding references to AST nodes.
* Fix a crash when TYPE_CHECKING is used without importing
it.
* Fix a used-before-assignment false positive when imports
are made under the TYPE_CHECKING else if branch.
* Fix a regression of preferred-modules where a partial
match was used instead of the required full match.
- drop pylint-pr7367-pythonpathtest.patch (upstream)
* Mon Jan 09 2023 Dirk Müller <dmueller@suse.com>
- update to v2.15.10:
* Fix use-sequence-for-iteration when unpacking a set with *.
* Fix false positive assigning-non-slot when a class attribute is
* re-assigned.
* Fixes used-before-assignment false positive when the walrus operator
* is used in a ternary operator.
* Prevent used-before-assignment when imports guarded by if TYPE_CHECKING
* are guarded again when used.
* Using custom braces in msg-template will now work properly.
/usr/bin/pylint /usr/bin/pylint-3.13 /usr/bin/pylint-config /usr/bin/pylint-config-3.13 /usr/bin/pyreverse /usr/bin/pyreverse-3.13 /usr/bin/symilar /usr/bin/symilar-3.13 /usr/lib/python3.13/site-packages/pylint /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/INSTALLER /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/METADATA /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/RECORD /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/REQUESTED /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/WHEEL /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/entry_points.txt /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/licenses /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/licenses/CONTRIBUTORS.txt /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/licenses/LICENSE /usr/lib/python3.13/site-packages/pylint-4.0.5.dist-info/top_level.txt /usr/lib/python3.13/site-packages/pylint/__init__.py /usr/lib/python3.13/site-packages/pylint/__main__.py /usr/lib/python3.13/site-packages/pylint/__pkginfo__.py /usr/lib/python3.13/site-packages/pylint/__pycache__ /usr/lib/python3.13/site-packages/pylint/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/__main__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/__main__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/__pkginfo__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/__pkginfo__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/constants.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/constants.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/exceptions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/exceptions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/graph.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/graph.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/interfaces.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/interfaces.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/typing.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/__pycache__/typing.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers /usr/lib/python3.13/site-packages/pylint/checkers/__init__.py /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__ /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/async_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/async_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/bad_chained_comparison.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/bad_chained_comparison.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/base_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/base_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/clear_lru_cache.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/clear_lru_cache.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/dataclass_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/dataclass_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/deprecated.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/deprecated.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/design_analysis.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/design_analysis.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/dunder_methods.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/dunder_methods.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/ellipsis_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/ellipsis_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/exceptions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/exceptions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/format.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/format.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/imports.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/imports.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/lambda_expressions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/lambda_expressions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/logging.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/logging.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/match_statements_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/match_statements_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/method_args.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/method_args.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/misc.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/misc.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/modified_iterating_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/modified_iterating_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/nested_min_max.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/nested_min_max.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/newstyle.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/newstyle.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/non_ascii_names.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/non_ascii_names.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/raw_metrics.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/raw_metrics.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/spelling.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/spelling.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/stdlib.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/stdlib.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/strings.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/strings.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/symilar.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/symilar.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/threading_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/threading_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/typecheck.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/typecheck.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/unicode.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/unicode.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/unsupported_version.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/unsupported_version.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/variables.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/__pycache__/variables.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/async_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/bad_chained_comparison.py /usr/lib/python3.13/site-packages/pylint/checkers/base /usr/lib/python3.13/site-packages/pylint/checkers/base/__init__.py /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__ /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/basic_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/basic_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/basic_error_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/basic_error_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/comparison_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/comparison_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/docstring_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/docstring_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/function_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/function_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/pass_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/__pycache__/pass_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/basic_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base/basic_error_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base/comparison_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base/docstring_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base/function_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__init__.py /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__ /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__/checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__/checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__/naming_style.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/__pycache__/naming_style.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base/name_checker/naming_style.py /usr/lib/python3.13/site-packages/pylint/checkers/base/pass_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/base_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/classes /usr/lib/python3.13/site-packages/pylint/checkers/classes/__init__.py /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__ /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__/class_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__/class_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__/special_methods_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/classes/__pycache__/special_methods_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/classes/class_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/classes/special_methods_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/clear_lru_cache.py /usr/lib/python3.13/site-packages/pylint/checkers/dataclass_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/deprecated.py /usr/lib/python3.13/site-packages/pylint/checkers/design_analysis.py /usr/lib/python3.13/site-packages/pylint/checkers/dunder_methods.py /usr/lib/python3.13/site-packages/pylint/checkers/ellipsis_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/exceptions.py /usr/lib/python3.13/site-packages/pylint/checkers/format.py /usr/lib/python3.13/site-packages/pylint/checkers/imports.py /usr/lib/python3.13/site-packages/pylint/checkers/lambda_expressions.py /usr/lib/python3.13/site-packages/pylint/checkers/logging.py /usr/lib/python3.13/site-packages/pylint/checkers/match_statements_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/method_args.py /usr/lib/python3.13/site-packages/pylint/checkers/misc.py /usr/lib/python3.13/site-packages/pylint/checkers/modified_iterating_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/nested_min_max.py /usr/lib/python3.13/site-packages/pylint/checkers/newstyle.py /usr/lib/python3.13/site-packages/pylint/checkers/non_ascii_names.py /usr/lib/python3.13/site-packages/pylint/checkers/raw_metrics.py /usr/lib/python3.13/site-packages/pylint/checkers/refactoring /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__init__.py /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__ /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/implicit_booleaness_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/implicit_booleaness_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/not_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/not_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/recommendation_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/recommendation_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/refactoring_checker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/__pycache__/refactoring_checker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/implicit_booleaness_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/not_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/recommendation_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/refactoring/refactoring_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/spelling.py /usr/lib/python3.13/site-packages/pylint/checkers/stdlib.py /usr/lib/python3.13/site-packages/pylint/checkers/strings.py /usr/lib/python3.13/site-packages/pylint/checkers/symilar.py /usr/lib/python3.13/site-packages/pylint/checkers/threading_checker.py /usr/lib/python3.13/site-packages/pylint/checkers/typecheck.py /usr/lib/python3.13/site-packages/pylint/checkers/unicode.py /usr/lib/python3.13/site-packages/pylint/checkers/unsupported_version.py /usr/lib/python3.13/site-packages/pylint/checkers/utils.py /usr/lib/python3.13/site-packages/pylint/checkers/variables.py /usr/lib/python3.13/site-packages/pylint/config /usr/lib/python3.13/site-packages/pylint/config/__init__.py /usr/lib/python3.13/site-packages/pylint/config/__pycache__ /usr/lib/python3.13/site-packages/pylint/config/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/argument.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/argument.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/arguments_manager.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/arguments_manager.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/arguments_provider.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/arguments_provider.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/callback_actions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/callback_actions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/config_file_parser.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/config_file_parser.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/config_initialization.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/config_initialization.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/deprecation_actions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/deprecation_actions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/exceptions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/exceptions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/find_default_config_files.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/find_default_config_files.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/help_formatter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/help_formatter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_breaking_changes /usr/lib/python3.13/site-packages/pylint/config/_breaking_changes/__init__.py /usr/lib/python3.13/site-packages/pylint/config/_breaking_changes/__pycache__ /usr/lib/python3.13/site-packages/pylint/config/_breaking_changes/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_breaking_changes/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__init__.py /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__ /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/generate_command.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/generate_command.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/help_message.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/help_message.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/main.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/main.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/setup.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/setup.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/generate_command.py /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/help_message.py /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/main.py /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/setup.py /usr/lib/python3.13/site-packages/pylint/config/_pylint_config/utils.py /usr/lib/python3.13/site-packages/pylint/config/argument.py /usr/lib/python3.13/site-packages/pylint/config/arguments_manager.py /usr/lib/python3.13/site-packages/pylint/config/arguments_provider.py /usr/lib/python3.13/site-packages/pylint/config/callback_actions.py /usr/lib/python3.13/site-packages/pylint/config/config_file_parser.py /usr/lib/python3.13/site-packages/pylint/config/config_initialization.py /usr/lib/python3.13/site-packages/pylint/config/deprecation_actions.py /usr/lib/python3.13/site-packages/pylint/config/exceptions.py /usr/lib/python3.13/site-packages/pylint/config/find_default_config_files.py /usr/lib/python3.13/site-packages/pylint/config/help_formatter.py /usr/lib/python3.13/site-packages/pylint/config/utils.py /usr/lib/python3.13/site-packages/pylint/constants.py /usr/lib/python3.13/site-packages/pylint/exceptions.py /usr/lib/python3.13/site-packages/pylint/extensions /usr/lib/python3.13/site-packages/pylint/extensions/__init__.py /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__ /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/_check_docs_utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/_check_docs_utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/bad_builtin.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/bad_builtin.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/broad_try_clause.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/broad_try_clause.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/check_elif.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/check_elif.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/code_style.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/code_style.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/comparison_placement.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/comparison_placement.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/confusing_elif.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/confusing_elif.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/consider_refactoring_into_while_condition.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/consider_refactoring_into_while_condition.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/consider_ternary_expression.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/consider_ternary_expression.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/dict_init_mutate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/dict_init_mutate.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/docparams.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/docparams.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/docstyle.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/docstyle.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/dunder.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/dunder.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/empty_comment.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/empty_comment.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/eq_without_hash.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/eq_without_hash.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/for_any_all.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/for_any_all.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/magic_value.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/magic_value.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/mccabe.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/mccabe.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/no_self_use.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/no_self_use.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/overlapping_exceptions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/overlapping_exceptions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/private_import.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/private_import.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/redefined_loop_name.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/redefined_loop_name.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/redefined_variable_type.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/redefined_variable_type.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/set_membership.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/set_membership.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/typing.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/typing.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/while_used.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/extensions/__pycache__/while_used.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/extensions/_check_docs_utils.py /usr/lib/python3.13/site-packages/pylint/extensions/bad_builtin.py /usr/lib/python3.13/site-packages/pylint/extensions/broad_try_clause.py /usr/lib/python3.13/site-packages/pylint/extensions/check_elif.py /usr/lib/python3.13/site-packages/pylint/extensions/code_style.py /usr/lib/python3.13/site-packages/pylint/extensions/comparison_placement.py /usr/lib/python3.13/site-packages/pylint/extensions/confusing_elif.py /usr/lib/python3.13/site-packages/pylint/extensions/consider_refactoring_into_while_condition.py /usr/lib/python3.13/site-packages/pylint/extensions/consider_ternary_expression.py /usr/lib/python3.13/site-packages/pylint/extensions/dict_init_mutate.py /usr/lib/python3.13/site-packages/pylint/extensions/docparams.py /usr/lib/python3.13/site-packages/pylint/extensions/docstyle.py /usr/lib/python3.13/site-packages/pylint/extensions/dunder.py /usr/lib/python3.13/site-packages/pylint/extensions/empty_comment.py /usr/lib/python3.13/site-packages/pylint/extensions/eq_without_hash.py /usr/lib/python3.13/site-packages/pylint/extensions/for_any_all.py /usr/lib/python3.13/site-packages/pylint/extensions/magic_value.py /usr/lib/python3.13/site-packages/pylint/extensions/mccabe.py /usr/lib/python3.13/site-packages/pylint/extensions/no_self_use.py /usr/lib/python3.13/site-packages/pylint/extensions/overlapping_exceptions.py /usr/lib/python3.13/site-packages/pylint/extensions/private_import.py /usr/lib/python3.13/site-packages/pylint/extensions/redefined_loop_name.py /usr/lib/python3.13/site-packages/pylint/extensions/redefined_variable_type.py /usr/lib/python3.13/site-packages/pylint/extensions/set_membership.py /usr/lib/python3.13/site-packages/pylint/extensions/typing.py /usr/lib/python3.13/site-packages/pylint/extensions/while_used.py /usr/lib/python3.13/site-packages/pylint/graph.py /usr/lib/python3.13/site-packages/pylint/interfaces.py /usr/lib/python3.13/site-packages/pylint/lint /usr/lib/python3.13/site-packages/pylint/lint/__init__.py /usr/lib/python3.13/site-packages/pylint/lint/__pycache__ /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/base_options.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/base_options.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/caching.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/caching.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/expand_modules.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/expand_modules.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/message_state_handler.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/message_state_handler.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/parallel.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/parallel.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/pylinter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/pylinter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/report_functions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/report_functions.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/run.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/run.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/lint/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/lint/base_options.py /usr/lib/python3.13/site-packages/pylint/lint/caching.py /usr/lib/python3.13/site-packages/pylint/lint/expand_modules.py /usr/lib/python3.13/site-packages/pylint/lint/message_state_handler.py /usr/lib/python3.13/site-packages/pylint/lint/parallel.py /usr/lib/python3.13/site-packages/pylint/lint/pylinter.py /usr/lib/python3.13/site-packages/pylint/lint/report_functions.py /usr/lib/python3.13/site-packages/pylint/lint/run.py /usr/lib/python3.13/site-packages/pylint/lint/utils.py /usr/lib/python3.13/site-packages/pylint/message /usr/lib/python3.13/site-packages/pylint/message/__init__.py /usr/lib/python3.13/site-packages/pylint/message/__pycache__ /usr/lib/python3.13/site-packages/pylint/message/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/_deleted_message_ids.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/_deleted_message_ids.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message_definition.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message_definition.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message_definition_store.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message_definition_store.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message_id_store.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/message/__pycache__/message_id_store.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/message/_deleted_message_ids.py /usr/lib/python3.13/site-packages/pylint/message/message.py /usr/lib/python3.13/site-packages/pylint/message/message_definition.py /usr/lib/python3.13/site-packages/pylint/message/message_definition_store.py /usr/lib/python3.13/site-packages/pylint/message/message_id_store.py /usr/lib/python3.13/site-packages/pylint/py.typed /usr/lib/python3.13/site-packages/pylint/pyreverse /usr/lib/python3.13/site-packages/pylint/pyreverse/__init__.py /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__ /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/diadefslib.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/diadefslib.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/diagrams.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/diagrams.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/dot_printer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/dot_printer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/inspector.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/inspector.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/main.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/main.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/mermaidjs_printer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/mermaidjs_printer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/plantuml_printer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/plantuml_printer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/printer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/printer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/printer_factory.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/printer_factory.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/writer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/__pycache__/writer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/pyreverse/diadefslib.py /usr/lib/python3.13/site-packages/pylint/pyreverse/diagrams.py /usr/lib/python3.13/site-packages/pylint/pyreverse/dot_printer.py /usr/lib/python3.13/site-packages/pylint/pyreverse/inspector.py /usr/lib/python3.13/site-packages/pylint/pyreverse/main.py /usr/lib/python3.13/site-packages/pylint/pyreverse/mermaidjs_printer.py /usr/lib/python3.13/site-packages/pylint/pyreverse/plantuml_printer.py /usr/lib/python3.13/site-packages/pylint/pyreverse/printer.py /usr/lib/python3.13/site-packages/pylint/pyreverse/printer_factory.py /usr/lib/python3.13/site-packages/pylint/pyreverse/utils.py /usr/lib/python3.13/site-packages/pylint/pyreverse/writer.py /usr/lib/python3.13/site-packages/pylint/reporters /usr/lib/python3.13/site-packages/pylint/reporters/__init__.py /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__ /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/base_reporter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/base_reporter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/collecting_reporter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/collecting_reporter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/json_reporter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/json_reporter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/multi_reporter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/multi_reporter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/progress_reporters.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/progress_reporters.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/reports_handler_mix_in.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/reports_handler_mix_in.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/text.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/__pycache__/text.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/base_reporter.py /usr/lib/python3.13/site-packages/pylint/reporters/collecting_reporter.py /usr/lib/python3.13/site-packages/pylint/reporters/json_reporter.py /usr/lib/python3.13/site-packages/pylint/reporters/multi_reporter.py /usr/lib/python3.13/site-packages/pylint/reporters/progress_reporters.py /usr/lib/python3.13/site-packages/pylint/reporters/reports_handler_mix_in.py /usr/lib/python3.13/site-packages/pylint/reporters/text.py /usr/lib/python3.13/site-packages/pylint/reporters/ureports /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__init__.py /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__ /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/base_writer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/base_writer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/nodes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/nodes.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/text_writer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/__pycache__/text_writer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/reporters/ureports/base_writer.py /usr/lib/python3.13/site-packages/pylint/reporters/ureports/nodes.py /usr/lib/python3.13/site-packages/pylint/reporters/ureports/text_writer.py /usr/lib/python3.13/site-packages/pylint/testutils /usr/lib/python3.13/site-packages/pylint/testutils/__init__.py /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__ /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/_run.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/_run.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/checker_test_case.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/checker_test_case.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/configuration_test.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/configuration_test.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/constants.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/constants.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/decorator.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/decorator.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/get_test_info.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/get_test_info.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/global_test_linter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/global_test_linter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/lint_module_test.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/lint_module_test.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/output_line.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/output_line.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/pyreverse.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/pyreverse.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/reporter_for_tests.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/reporter_for_tests.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/tokenize_str.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/tokenize_str.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/unittest_linter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/unittest_linter.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__init__.py /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__ /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/package_to_lint.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/package_to_lint.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_command.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_command.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_compare_command.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_compare_command.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_prepare_command.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_prepare_command.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_run_command.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/__pycache__/primer_run_command.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/_primer/package_to_lint.py /usr/lib/python3.13/site-packages/pylint/testutils/_primer/primer.py /usr/lib/python3.13/site-packages/pylint/testutils/_primer/primer_command.py /usr/lib/python3.13/site-packages/pylint/testutils/_primer/primer_compare_command.py /usr/lib/python3.13/site-packages/pylint/testutils/_primer/primer_prepare_command.py /usr/lib/python3.13/site-packages/pylint/testutils/_primer/primer_run_command.py /usr/lib/python3.13/site-packages/pylint/testutils/_run.py /usr/lib/python3.13/site-packages/pylint/testutils/checker_test_case.py /usr/lib/python3.13/site-packages/pylint/testutils/configuration_test.py /usr/lib/python3.13/site-packages/pylint/testutils/constants.py /usr/lib/python3.13/site-packages/pylint/testutils/decorator.py /usr/lib/python3.13/site-packages/pylint/testutils/functional /usr/lib/python3.13/site-packages/pylint/testutils/functional/__init__.py /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__ /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/find_functional_tests.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/find_functional_tests.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/lint_module_output_update.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/lint_module_output_update.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/test_file.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/__pycache__/test_file.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/testutils/functional/find_functional_tests.py /usr/lib/python3.13/site-packages/pylint/testutils/functional/lint_module_output_update.py /usr/lib/python3.13/site-packages/pylint/testutils/functional/test_file.py /usr/lib/python3.13/site-packages/pylint/testutils/get_test_info.py /usr/lib/python3.13/site-packages/pylint/testutils/global_test_linter.py /usr/lib/python3.13/site-packages/pylint/testutils/lint_module_test.py /usr/lib/python3.13/site-packages/pylint/testutils/output_line.py /usr/lib/python3.13/site-packages/pylint/testutils/pyreverse.py /usr/lib/python3.13/site-packages/pylint/testutils/reporter_for_tests.py /usr/lib/python3.13/site-packages/pylint/testutils/testing_pylintrc /usr/lib/python3.13/site-packages/pylint/testutils/tokenize_str.py /usr/lib/python3.13/site-packages/pylint/testutils/unittest_linter.py /usr/lib/python3.13/site-packages/pylint/testutils/utils.py /usr/lib/python3.13/site-packages/pylint/typing.py /usr/lib/python3.13/site-packages/pylint/utils /usr/lib/python3.13/site-packages/pylint/utils/__init__.py /usr/lib/python3.13/site-packages/pylint/utils/__pycache__ /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/ast_walker.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/ast_walker.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/docs.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/docs.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/file_state.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/file_state.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/linterstats.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/linterstats.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/pragma_parser.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/pragma_parser.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/pylint/utils/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/pylint/utils/ast_walker.py /usr/lib/python3.13/site-packages/pylint/utils/docs.py /usr/lib/python3.13/site-packages/pylint/utils/file_state.py /usr/lib/python3.13/site-packages/pylint/utils/linterstats.py /usr/lib/python3.13/site-packages/pylint/utils/pragma_parser.py /usr/lib/python3.13/site-packages/pylint/utils/utils.py /usr/share/doc/packages/python313-pylint /usr/share/doc/packages/python313-pylint/README.rst /usr/share/doc/packages/python313-pylint/examples /usr/share/doc/packages/python313-pylint/examples/Dockerfile /usr/share/doc/packages/python313-pylint/examples/custom.py /usr/share/doc/packages/python313-pylint/examples/custom_raw.py /usr/share/doc/packages/python313-pylint/examples/deprecation_checker.py /usr/share/doc/packages/python313-pylint/examples/pylintrc /usr/share/doc/packages/python313-pylint/examples/pylintrc_camelcase /usr/share/doc/packages/python313-pylint/examples/pyproject.toml /usr/share/libalternatives/pylint /usr/share/libalternatives/pylint-config /usr/share/libalternatives/pylint-config/1313.conf /usr/share/libalternatives/pylint/1313.conf /usr/share/libalternatives/pyreverse /usr/share/libalternatives/pyreverse/1313.conf /usr/share/libalternatives/symilar /usr/share/libalternatives/symilar/1313.conf /usr/share/licenses/python313-pylint /usr/share/licenses/python313-pylint/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Mar 15 22:19:25 2026