Skip to content

Commit f184491

Browse files
Merge maintenance into main following 2.17.6 release (#9067)
2 parents 209f234 + 8e914e9 commit f184491

File tree

7 files changed

+19
-24
lines changed

7 files changed

+19
-24
lines changed

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,7 @@ contributors:
564564
- Arun Persaud <[email protected]>
565565
- Arthur Lutz <[email protected]>
566566
- Antonio Ossa <[email protected]>
567+
- Antonio <[email protected]>
567568
- Anthony VEREZ <[email protected]>
568569
- Anthony Tan <[email protected]>
569570
- Anthony Foglia <[email protected]> (Google): Added simple string slots check.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ ecosystem of existing plugins for popular frameworks and third-party libraries.
122122

123123
.. _`plugins`: https://pylint.readthedocs.io/en/latest/development_guide/how_tos/plugins.html#plugins
124124
.. _`pylint-pydantic`: https://pypi.org/project/pylint-pydantic
125-
.. _`pylint-django`: https://github.com/PyCQA/pylint-django
125+
.. _`pylint-django`: https://github.com/pylint-dev/pylint-django
126126
.. _`pylint-sonarjson`: https://github.com/omegacen/pylint-sonarjson
127127

128128
Advised linters alongside pylint

doc/data/messages/n/non-ascii-file-name/good/__init__.py

Whitespace-only changes.

doc/whatsnew/2/2.17/index.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ False Positives Fixed
115115
- Fix a false positive for ``bad-dunder-name`` when there is a user-defined
116116
``__index__`` method.
117117

118-
Closes #8613 (`#8613 <https://github.com/PyCQA/pylint/issues/8613>`_)
118+
Closes #8613 (`#8613 <https://github.com/pylint-dev/pylint/issues/8613>`_)
119119

120120

121121

@@ -126,13 +126,13 @@ Other Bug Fixes
126126
produced by DOT printer to ensure it is not treated as field separator of
127127
record-based nodes.
128128

129-
Closes #8603 (`#8603 <https://github.com/PyCQA/pylint/issues/8603>`_)
129+
Closes #8603 (`#8603 <https://github.com/pylint-dev/pylint/issues/8603>`_)
130130

131131
- Fixed a crash when generating a configuration file:
132132
``tomlkit.exceptions.TOMLKitError: Can't add a table to a dotted key``
133133
caused by tomlkit ``v0.11.8``.
134134

135-
Closes #8632 (`#8632 <https://github.com/PyCQA/pylint/issues/8632>`_)
135+
Closes #8632 (`#8632 <https://github.com/pylint-dev/pylint/issues/8632>`_)
136136

137137

138138
What's new in Pylint 2.17.3?
@@ -146,41 +146,41 @@ False Positives Fixed
146146
- Fix `unused-argument` false positive when `__new__` does not use all the
147147
arguments of `__init__`.
148148

149-
Closes #3670 (`#3670 <https://github.com/PyCQA/pylint/issues/3670>`_)
149+
Closes #3670 (`#3670 <https://github.com/pylint-dev/pylint/issues/3670>`_)
150150

151151
- Fix ``unused-import`` false positive for usage of ``six.with_metaclass``.
152152

153-
Closes #7506 (`#7506 <https://github.com/PyCQA/pylint/issues/7506>`_)
153+
Closes #7506 (`#7506 <https://github.com/pylint-dev/pylint/issues/7506>`_)
154154

155155
- `logging-not-lazy` is not longer emitted for explicitly concatenated string
156156
arguments.
157157

158-
Closes #8410 (`#8410 <https://github.com/PyCQA/pylint/issues/8410>`_)
158+
Closes #8410 (`#8410 <https://github.com/pylint-dev/pylint/issues/8410>`_)
159159

160160
- Fix false positive for isinstance-second-argument-not-valid-type when union
161161
types contains None.
162162

163-
Closes #8424 (`#8424 <https://github.com/PyCQA/pylint/issues/8424>`_)
163+
Closes #8424 (`#8424 <https://github.com/pylint-dev/pylint/issues/8424>`_)
164164

165165
- Fixed `unused-import` so that it observes the `dummy-variables-rgx` option.
166166

167-
Closes #8500 (`#8500 <https://github.com/PyCQA/pylint/issues/8500>`_)
167+
Closes #8500 (`#8500 <https://github.com/pylint-dev/pylint/issues/8500>`_)
168168

169169
- `Union` typed variables without assignment are no longer treated as
170170
`TypeAlias`.
171171

172-
Closes #8540 (`#8540 <https://github.com/PyCQA/pylint/issues/8540>`_)
172+
Closes #8540 (`#8540 <https://github.com/pylint-dev/pylint/issues/8540>`_)
173173

174174
- Fix false positive for ``positional-only-arguments-expected`` when a function
175175
contains both a positional-only parameter that has a default value, and
176176
``**kwargs``.
177177

178-
Closes #8555 (`#8555 <https://github.com/PyCQA/pylint/issues/8555>`_)
178+
Closes #8555 (`#8555 <https://github.com/pylint-dev/pylint/issues/8555>`_)
179179

180180
- Fix false positive for ``keyword-arg-before-vararg`` when a positional-only
181181
parameter with a default value precedes ``*args``.
182182

183-
Closes #8570 (`#8570 <https://github.com/PyCQA/pylint/issues/8570>`_)
183+
Closes #8570 (`#8570 <https://github.com/pylint-dev/pylint/issues/8570>`_)
184184

185185

186186

@@ -190,7 +190,7 @@ Other Bug Fixes
190190
- Improve output of ``consider-using-generator`` message for ``min()`` calls
191191
with ``default`` keyword.
192192

193-
Closes #8563 (`#8563 <https://github.com/PyCQA/pylint/issues/8563>`_)
193+
Closes #8563 (`#8563 <https://github.com/pylint-dev/pylint/issues/8563>`_)
194194

195195

196196
What's new in Pylint 2.17.2?
@@ -205,18 +205,18 @@ False Positives Fixed
205205
- now valid: ``Good2Name``, ``GoodName2``.
206206
- still invalid: ``_1BadName``.
207207

208-
Closes #8485 (`#8485 <https://github.com/PyCQA/pylint/issues/8485>`_)
208+
Closes #8485 (`#8485 <https://github.com/pylint-dev/pylint/issues/8485>`_)
209209

210210
- No longer consider ``Union`` as type annotation as type alias for naming
211211
checks.
212212

213-
Closes #8487 (`#8487 <https://github.com/PyCQA/pylint/issues/8487>`_)
213+
Closes #8487 (`#8487 <https://github.com/pylint-dev/pylint/issues/8487>`_)
214214

215215
- ``unnecessary-lambda`` no longer warns on lambdas which use its parameters in
216216
their body (other than the final arguments), e.g.
217217
``lambda foo: (bar if foo else baz)(foo)``.
218218

219-
Closes #8496 (`#8496 <https://github.com/PyCQA/pylint/issues/8496>`_)
219+
Closes #8496 (`#8496 <https://github.com/pylint-dev/pylint/issues/8496>`_)
220220

221221

222222

@@ -226,7 +226,7 @@ Other Bug Fixes
226226
- Fix a crash in pyreverse when "/" characters are used in the output filename
227227
e.g pyreverse -o png -p name/ path/to/project.
228228

229-
Closes #8504 (`#8504 <https://github.com/PyCQA/pylint/issues/8504>`_)
229+
Closes #8504 (`#8504 <https://github.com/pylint-dev/pylint/issues/8504>`_)
230230

231231

232232
What's new in Pylint 2.17.1?

doc/whatsnew/fragments/8603.bugfix

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/whatsnew/fragments/8613.false_positive

Lines changed: 0 additions & 3 deletions
This file was deleted.

tests/functional/u/unused/unused_import.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def blop(self):
100100

101101

102102
class WithMetaclass(six.with_metaclass(ABCMeta)):
103-
"""Regression test for https://github.com/PyCQA/pylint/issues/7506.
103+
"""Regression test for https://github.com/pylint-dev/pylint/issues/7506.
104104
105105
Requires six."""
106106

0 commit comments

Comments
 (0)