@@ -56,7 +56,7 @@ Release date: TBA
56
56
57
57
Closes #5504
58
58
59
- * The ``PyLinter`` class will now be initialiazed with a ``TextReporter``
59
+ * The ``PyLinter`` class will now be initialized with a ``TextReporter``
60
60
as its reporter if none is provided.
61
61
62
62
* Fatal errors now emit a score of 0.0 regardless of whether the linted module
@@ -207,8 +207,8 @@ Release date: 2021-11-24
207
207
output files without these will trigger a ``DeprecationWarning``. Expected output files
208
208
can be easily updated with the ``python tests/test_functional.py --update-functional-output`` command.
209
209
210
- * The functional ``testutils`` now correctly check the distinction betweeen ``HIGH`` and
211
- ``UNDEFINED`` confidence. Expected output files without defiend ``confidence`` levels will now
210
+ * The functional ``testutils`` now correctly check the distinction between ``HIGH`` and
211
+ ``UNDEFINED`` confidence. Expected output files without defined ``confidence`` levels will now
212
212
trigger a ``DeprecationWarning``. Expected output files can be easily updated with the
213
213
``python tests/test_functional.py --update-functional-output`` command.
214
214
@@ -331,7 +331,7 @@ Release date: 2021-11-24
331
331
332
332
Closes #5194
333
333
334
- * Fix double emitting of ``not-callable`` on inferrable ``properties``
334
+ * Fix double emitting of ``not-callable`` on inferable ``properties``
335
335
336
336
Closes #4426
337
337
@@ -495,7 +495,7 @@ Release date: 2021-09-16
495
495
Closes #4776
496
496
497
497
498
- * Added ``py-version`` config key (if ``[MASTER]`` section). Used for version dependant checks.
498
+ * Added ``py-version`` config key (if ``[MASTER]`` section). Used for version dependent checks.
499
499
Will default to whatever Python version pylint is executed with.
500
500
501
501
* ``CodeStyleChecker``
@@ -514,7 +514,7 @@ Release date: 2021-09-16
514
514
515
515
Closes #4751
516
516
517
- * https is now prefered in the documentation and http://pylint.pycqa.org correctly redirect to https://pylint.pycqa.org
517
+ * https is now preferred in the documentation and http://pylint.pycqa.org correctly redirect to https://pylint.pycqa.org
518
518
519
519
Closes #3802
520
520
@@ -728,7 +728,7 @@ Release date: 2021-08-20
728
728
* Fixed bug with ``cell-var-from-loop`` checker: it no longer has false negatives when
729
729
both ``unused-variable`` and ``used-before-assignment`` are disabled.
730
730
731
- * Fix false postive for ``invalid-all-format`` if the list or tuple builtin functions are used
731
+ * Fix false positive for ``invalid-all-format`` if the list or tuple builtin functions are used
732
732
733
733
Closes #4711
734
734
@@ -1456,7 +1456,7 @@ Release date: 2021-02-21
1456
1456
1457
1457
Close #3862
1458
1458
1459
- * Fix linter multiprocessing pool shutdown (triggered warnings when runned in parallels with other pytest plugins)
1459
+ * Fix linter multiprocessing pool shutdown (triggered warnings when ran in parallels with other pytest plugins)
1460
1460
1461
1461
Closes #3779
1462
1462
@@ -1483,7 +1483,7 @@ Release date: 2021-02-21
1483
1483
1484
1484
Closes #3468
1485
1485
1486
- * Fix ``useless-super-delegation`` false positive when default keyword argument is a dictionnary .
1486
+ * Fix ``useless-super-delegation`` false positive when default keyword argument is a dictionary .
1487
1487
1488
1488
Close #3773
1489
1489
@@ -3484,7 +3484,7 @@ Release date: 2017-04-13
3484
3484
3485
3485
This message is emitted when pylint finds an one-element tuple,
3486
3486
created by a stray comma. This can suggest a potential problem in the
3487
- code and it is recommended to use parantheses in order to emphasise the
3487
+ code and it is recommended to use parentheses in order to emphasise the
3488
3488
creation of a tuple, rather than relying on the comma itself.
3489
3489
3490
3490
* Don't emit not-callable for instances with unknown bases.
@@ -4184,7 +4184,7 @@ Release date: 2015-11-29
4184
4184
directory 'test/extensions' and documentation file 'doc/extensions.rst'.
4185
4185
4186
4186
* Added new checker 'extensions.check_docs' that verifies parameter
4187
- documention in Sphinx, Google, and Numpy style.
4187
+ documentation in Sphinx, Google, and Numpy style.
4188
4188
4189
4189
* Detect undefined variable cases, where the "definition" of an undefined
4190
4190
variable was in del statement. Instead of emitting used-before-assignment,
@@ -4280,7 +4280,7 @@ Release date: 2015-11-29
4280
4280
two a binary arithmetic operation is executed between two objects
4281
4281
which don't support it (a number plus a string for instance).
4282
4282
This is currently disabled, since the it exhibits way too many false
4283
- positives, but it will be reenabled as soon as possible.
4283
+ positives, but it will be re-enabled as soon as possible.
4284
4284
4285
4285
* New imported features from astroid into pyreverse: pyreverse.inspector.Project,
4286
4286
pyreverse.inspector.project_from_files and pyreverse.inspector.interfaces.
@@ -5255,7 +5255,7 @@ Release date: 2012-10-05
5255
5255
5256
5256
* #105337: allow custom reporter in output-format (patch by Kevin Jing Qiu)
5257
5257
5258
- * #104420: check for protocol completness and avoid false R0903
5258
+ * #104420: check for protocol completeness and avoid false R0903
5259
5259
(patch by Peter Hammond)
5260
5260
5261
5261
* #100654: fix grammatical error for W0332 message (using 'l' as
@@ -5283,7 +5283,7 @@ Release date: 2012-07-17
5283
5283
except handler contains a tuple of names instead of a single name.
5284
5284
5285
5285
5286
- * #7394: W0212 (access to protected member) not emitted on assigments
5286
+ * #7394: W0212 (access to protected member) not emitted on assignments
5287
5287
5288
5288
5289
5289
* #18772; no prototype consistency check for mangled methods (patch by
@@ -5878,7 +5878,7 @@ Release date: 2006-03-06
5878
5878
- the C0101 check with its min-name-length option has
5879
5879
been removed (this can be specified in the regxp after all...)
5880
5880
- W0103 and W0121 are now handled by the variables checker
5881
- (W0103 is now W0603 and W0604 has been splitted into different messages)
5881
+ (W0103 is now W0603 and W0604 has been split into different messages)
5882
5882
- W0131 and W0132 messages have been reclassified to C0111 and
5883
5883
C0112 respectively
5884
5884
- new W0104 message on statement without effect
@@ -5915,7 +5915,7 @@ Release date: 2006-01-10
5915
5915
or the default ~/.pylintrc or /etc/pylintrc
5916
5916
5917
5917
* fixed W0706 (Identifier used to raise an exception is assigned...)
5918
- false positive and reraising a catched exception instance
5918
+ false positive and reraising a caught exception instance
5919
5919
5920
5920
* fixed E0611 (No name get in module blabla) false positive when accessing
5921
5921
to a class'__dict__
0 commit comments