third_party.pylibs.pylint.src/doc/whatsnew/2.4.rst
hippo91 8d2f5d090b Add a new `missing-parentheses-for-call-in-test` check
This is emitted in case a call to a function is made inside a test but it misses parentheses.
It is a more specialised form of `using-constant-test`, but tailored specifically to callables.

Close #2658
2019-03-19 10:45:09 +01:00

65 lines
1.5 KiB
ReStructuredText

**************************
What's New in Pylint 2.4
**************************
:Release: 2.4
:Date: TBA
Summary -- Release highlights
=============================
New checkers
============
* We added a new check message ``missing-parentheses-for-call-in-test``.
This is emitted in case a call to a function is made inside a test but
it misses parentheses.
* A new check ``class-variable-slots-conflict`` was added.
This check is emitted when ``pylint`` finds a class variable that conflicts with a slot
name, which would raise a ``ValueError`` at runtime.
For example, the following would raise an error::
class A:
__slots__ = ('first', 'second')
first = 1
Other Changes
=============
* ``len-as-condition`` now only fires when a ``len(x)`` call is made without an explicit comparison.
The message and description accompanying this checker has been changed
reflect this new behavior, by explicitly asking to either rely on the
fact that empty sequence are false or to compare the length with a scalar.
OK::
if len(x) == 0:
pass
while not len(x) == 0:
pass
assert len(x) > 5, message
KO::
if not len(x):
pass
while len(x) and other_cond:
pass
assert len(x), message
* A file is now read from stdin if the ``--from-stdin`` flag is used on the
command line. In addition to the ``--from-stdin`` flag a (single) file
name needs to be specified on the command line, which is needed for the
report.