Path to this page:
Subject: CVS commit: pkgsrc/devel/py-pylint
From: Adam Ciarcinski
Date: 2022-10-12 09:45:17
Message id: 20221012074517.28D9DFA90@cvs.NetBSD.org
Log Message:
py-pylint: updated to 2.15.4
v2.15.4
False Positives Fixed
Fix the message for unnecessary-dunder-call for __aiter__ and
__aneext__. Also
only emit the warning when py-version >= 3.10.
Other Bug Fixes
Fix bug in detecting unused-variable when iterating on variable.
Fixed handling of -- as separator between positional arguments and flags.
This was not actually fixed in 2.14.5.
Report no-self-argument rather than no-method-argument for methods
with variadic arguments.
Fixed an issue where syntax-error couldn't be raised on files with
invalid encodings.
Fix false positive for redefined-outer-name when aliasing typing
e.g. as t and guarding imports under t.TYPE_CHECKING.
Fixed a crash of the modified_iterating checker when iterating on a set
defined as a class attribute.
Fix bug in scanning of names inside arguments to typing.Literal.
See https://peps.python.org/pep-0586/#literals-enums-and-forward-references
for details.
Other Changes
Add method name to the error messages of no-method-argument and
no-self-argument.
Files: