14
0
forked from pool/python-pylint

Accepting request 828459 from home:stroeder:branches:devel:languages:python

Update to 2.6.0

OBS-URL: https://build.opensuse.org/request/show/828459
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylint?expand=0&rev=114
This commit is contained in:
Tomáš Chvátal
2020-08-24 18:47:24 +00:00
committed by Git OBS Bridge
parent 59ee9776a7
commit ddb1e8240f
5 changed files with 24 additions and 444 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Fri Aug 21 10:28:41 UTC 2020 - Michael Ströder <michael@stroeder.com>
- Update to 2.6.0
* Fix various scope-related bugs in ``undefined-variable`` checker
* bad-continuation and bad-whitespace have been removed, black or another
formatter can help you with this better than Pylint
* The no-space-check option has been removed. It's no longer possible to
consider empty line like a `trailing-whitespace` by using clever options
* ``missing-kwoa`` is no longer emitted when dealing with overload functions
* mixed-indentation has been removed, it is no longer useful since TabError is included directly in python3
* Add `super-with-arguments` check for flagging instances of Python 2 style super calls.
* Add an faq detailing which messages to disable to avoid duplicates w/ other popular linters
* Fix superfluous-parens false-positive for the walrus operator
* Fix `fail-under` not accepting floats
* Fix a bug with `ignore-docstrings` ignoring all lines in a module
* Fix `pre-commit` config that could lead to undetected duplicate lines of code
* Fix a crash in parallel mode when the module's filepath is not set
- removed both_isort_4_5.patch obsoleted by upstream update
-------------------------------------------------------------------
Mon Jul 13 22:31:19 UTC 2020 - Matej Cepl <mcepl@suse.com>