Skip to content

Commit dcb0198

Browse files
Bump pylint to 2.16.0, update changelog
1 parent 77e562c commit dcb0198

File tree

132 files changed

+727
-455
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+727
-455
lines changed

CONTRIBUTORS.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ contributors:
130130
- Pavel Roskin <[email protected]>
131131
- David Gilman <[email protected]>
132132
- へーさん <[email protected]>
133+
- Yilei "Dolee" Yang <[email protected]>
133134
- Thomas Hisch <[email protected]>
134135
- Marianna Polatoglou <[email protected]>: minor contribution for wildcard import check
135136
- Manuel Vázquez Acosta <[email protected]>
@@ -151,7 +152,6 @@ contributors:
151152
* Added new extension which detects comparing integers to zero,
152153
* Added new useless-return checker,
153154
* Added new try-except-raise checker
154-
- Yilei "Dolee" Yang <[email protected]>
155155
- Téo Bouvard <[email protected]>
156156
- Mihai Balint <[email protected]>
157157
- Mark Bell <[email protected]>
@@ -176,6 +176,7 @@ contributors:
176176
- Paul Lichtenberger <[email protected]>
177177
- Or Bahari <[email protected]>
178178
- Mr. Senko <[email protected]>
179+
- Mike Frysinger <[email protected]>
179180
- Martin von Gagern <[email protected]> (Google): Added 'raising-format-tuple' warning.
180181
- Martin Vielsmaier <[email protected]>
181182
- Martin Pool <[email protected]> (Google):
@@ -207,7 +208,6 @@ contributors:
207208
- Nicolas Dickreuter <[email protected]>
208209
- Nick Bastin <[email protected]>
209210
- Nathaniel Manista <[email protected]>: suspicious lambda checking
210-
- Mike Frysinger <[email protected]>
211211
- Maksym Humetskyi <[email protected]> (mhumetskyi)
212212
* Fixed ignored empty functions by similarities checker with "ignore-signatures" option enabled
213213
* Ignore function decorators signatures as well by similarities checker with "ignore-signatures" option enabled
@@ -272,6 +272,7 @@ contributors:
272272
- Justin Li <[email protected]>
273273
- John Kirkham <[email protected]>
274274
- Jens H. Nielsen <[email protected]>
275+
- James Addison <[email protected]>
275276
- Ioana Tagirta <[email protected]>: fix bad thread instantiation check
276277
- Ikraduya Edian <[email protected]>: Added new checks 'consider-using-generator' and 'use-a-generator'.
277278
- Hugues Bruant <[email protected]>
@@ -471,7 +472,6 @@ contributors:
471472
- James M. Allen <[email protected]>
472473
- James Lingard <[email protected]>
473474
- James Broadhead <[email protected]>
474-
- James Addison <[email protected]>
475475
- Jakub Kulík <[email protected]>
476476
- Jakob Normark <[email protected]>
477477
- Jake Lishman <[email protected]>
@@ -506,6 +506,7 @@ contributors:
506506
- Denis Laxalde <[email protected]>
507507
- David Lawson <[email protected]>
508508
- David Cain <[email protected]>
509+
- Dave Bunten <[email protected]>
509510
- Danny Hermes <[email protected]>
510511
- Daniele Procida <[email protected]>
511512
- Daniela Plascencia <[email protected]>

doc/user_guide/checkers/features.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ See also :ref:`method_args checker's options' documentation <method_args-options
643643

644644
Method Args checker Messages
645645
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
646-
:positional-only-arguments-expected (E3102): *%s() got some positional-only arguments passed as keyword arguments: %s*
646+
:positional-only-arguments-expected (E3102): *`%s()` got some positional-only arguments passed as keyword arguments: %s*
647647
Emitted when positional-only arguments have been passed as keyword arguments.
648648
Remove the keywords for the affected arguments in the function call. This
649649
message can't be emitted when using Python < 3.8.

0 commit comments

Comments
 (0)