Skip to content

Commit f4357fd

Browse files
Add a message in the changelog and update contributors.txt
1 parent 0f307ab commit f4357fd

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

CONTRIBUTORS.txt

+1-5
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,7 @@ contributors:
286286

287287
* Michael Scott Cuthbert: contributor
288288

289-
* Pierre Sassoulas : contributor
290-
- Made C0412 (ungrouped import) compatible with isort
291-
- Made multiple message with the same old name possible
292-
- Made Pylint a little faster by refactoring the message store
293-
- Broke down "missing-docstrings" between "module", "class" and "function"
289+
* Pierre Sassoulas : maintainer, contributor
294290

295291
* Nathan Marrow
296292

ChangeLog

+7-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,19 @@ Release date: TBA
1111
is not returning explicitly while the other do.
1212

1313
Closes #3468
14-
14+
1515
* Fix ``useless-super-delegation`` false positive when default keyword argument is a dictionnary.
1616

1717
Close #3773
1818

1919
* Fix a crash when a specified config file does not exist
2020

21+
* `len-as-conditions` is now triggered only for classes that are inheriting directly from list, dict, or set and
22+
not implementing the `__bool__` function, or from generators like range or list/dict/set comprehension.
23+
This should reduce the false positive for other classes, like pandas's DataFrame or numpy's Array.
24+
25+
Close #1879
26+
2127
What's New in Pylint 2.6.0?
2228
===========================
2329

doc/whatsnew/2.7.rst

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
**************************
2+
What's New in Pylint 2.7
3+
**************************
4+
5+
:Release: 2.7
6+
:Date: 202?
7+
8+
9+
Summary -- Release highlights
10+
=============================
11+
12+
13+
New checkers
14+
============
15+
16+
Other Changes
17+
=============
18+
19+
* `len-as-conditions` is now triggered only for classes that are inheriting directly from list, dict, or set and not implementing the `__bool__` function, or from generators like range or list/dict/set comprehension. This should reduce the false positive for other classes, like pandas's DataFrame or numpy's Array.

0 commit comments

Comments
 (0)