summaryrefslogtreecommitdiff
path: root/doc/whatsnew/2.12.rst
blob: 7cdd12003eed5b1d2ab87818ab46a126030a9242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
***************************
 What's New in Pylint 2.12
***************************

:Release: 2.12
:Date: TBA

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


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

* Checkers for ``typing.final``

  * Added ``overridden-final-method``: Emitted when a method which is annotated with ``typing.final`` is overridden

  * Added ``subclassed-final-class``: Emitted when a class which is annotated with ``typing.final`` is subclassed

  Closes #3197


Removed checkers
================


Extensions
==========


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

* Improve and flatten ``unused-wildcard-import`` message

  Closes #3859

* In length checker, ``len-as-condition`` has been renamed as
  ``use-implicit-booleaness-not-len`` in order to be consistent with
  ``use-implicit-booleaness-not-comparison``.