Path to this page:
Subject: CVS commit: pkgsrc/devel/py-pylint
From: Adam Ciarcinski
Date: 2023-04-27 19:54:15
Message id: 20230427175415.1CB5FFA87@cvs.NetBSD.org
Log Message:
py-pylint: updated to 2.17.3
What's new in Pylint 2.17.3?
False Positives Fixed
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.
Other Bug Fixes
Improve output of consider-using-generator message for min()` calls with \
default`` keyword.
Files: