Path to this page:
Subject: CVS commit: pkgsrc/devel/py-pylint
From: Adam Ciarcinski
Date: 2023-04-05 13:21:05
Message id: 20230405112105.3AD81FA81@cvs.NetBSD.org
Log Message:
py-pylint: updated to 2.17.2
What's new in Pylint 2.17.2?
False Positives Fixed
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).
Other Bug Fixes
Fix a crash in pyreverse when "/" characters are used in the output \
filename e.g pyreverse -o png -p name/ path/to/project.
What's new in Pylint 2.17.1?
False Positives Fixed
Adds asyncSetUp to the default defining-attr-methods list to silence \
attribute-defined-outside-init warning when using \
unittest.IsolatedAsyncioTestCase.
Files: