Skip to content

Commit

Permalink
Add a message in the changelog and update contributors.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Sep 7, 2020
1 parent 0f307ab commit f4357fd
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
6 changes: 1 addition & 5 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,7 @@ contributors:

* Michael Scott Cuthbert: contributor

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

* Nathan Marrow

Expand Down
8 changes: 7 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,19 @@ Release date: TBA
is not returning explicitly while the other do.

Closes #3468

* Fix ``useless-super-delegation`` false positive when default keyword argument is a dictionnary.

Close #3773

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

* `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.

Close #1879

What's New in Pylint 2.6.0?
===========================

Expand Down
19 changes: 19 additions & 0 deletions doc/whatsnew/2.7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
**************************
What's New in Pylint 2.7
**************************

:Release: 2.7
:Date: 202?


Summary -- Release highlights
=============================


New checkers
============

Other Changes
=============

* `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 comments on commit f4357fd

Please sign in to comment.