Skip to content

Commit e1086e5

Browse files
Update changelog for mixed-indentation removal
Python3 raises: TabError: inconsistent use of tabs and spaces in indentation
1 parent 2785b2c commit e1086e5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

ChangeLog

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ Release date: TBA
88

99
* bad-continuation and bad-whitespace have been removed, black or another formatter can help you with this better than Pylint
1010

11-
Close #246, #289, #638, #747, #1148, #1179, #1943, #2041, #2301, #2304, #2944, #3565
11+
Close #246, #289, #638, #747, #1148, #1179, #1943, #2041, #2301, #2304, #2944, #3565
1212

1313
* 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
1414

15-
Close #1368
15+
Close #1368
16+
17+
* mixed-indentation has been removed, it is no longer useful since TabError is included directly in python3
18+
19+
Close #2984 #3573
1620

1721
What's New in Pylint 2.5.1?
1822
===========================

doc/whatsnew/2.6.rst

+2
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ Other Changes
1919
* `bad-continuation` and `bad-whitespace` have been removed. `black` or another formatter can help you with this better than Pylint
2020

2121
* 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.
22+
23+
* `mixed-indentation` has been removed, it is no longer useful since TabError is included directly in python3

0 commit comments

Comments
 (0)