Skip to content

Commit ef13c61

Browse files
[PyCQA migration] Upgrade links in maintenance branch
1 parent b7d270b commit ef13c61

22 files changed

+53
-53
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
1+
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
1+
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
You can help us make the doc better `by contributing <https://github.com/PyCQA/pylint/issues/5953>`_ !
1+
You can help us make the doc better `by contributing <https://github.com/pylint-dev/pylint/issues/5953>`_ !

doc/whatsnew/2/2.17/index.rst

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

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

4545

4646

@@ -51,13 +51,13 @@ Other Bug Fixes
5151
produced by DOT printer to ensure it is not treated as field separator of
5252
record-based nodes.
5353

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

5656
- Fixed a crash when generating a configuration file:
5757
``tomlkit.exceptions.TOMLKitError: Can't add a table to a dotted key``
5858
caused by tomlkit ``v0.11.8``.
5959

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

6262

6363
What's new in Pylint 2.17.3?
@@ -71,41 +71,41 @@ False Positives Fixed
7171
- Fix `unused-argument` false positive when `__new__` does not use all the
7272
arguments of `__init__`.
7373

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

7676
- Fix ``unused-import`` false positive for usage of ``six.with_metaclass``.
7777

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

8080
- `logging-not-lazy` is not longer emitted for explicitly concatenated string
8181
arguments.
8282

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

8585
- Fix false positive for isinstance-second-argument-not-valid-type when union
8686
types contains None.
8787

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

9090
- Fixed `unused-import` so that it observes the `dummy-variables-rgx` option.
9191

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

9494
- `Union` typed variables without assignment are no longer treated as
9595
`TypeAlias`.
9696

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

9999
- Fix false positive for ``positional-only-arguments-expected`` when a function
100100
contains both a positional-only parameter that has a default value, and
101101
``**kwargs``.
102102

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

105105
- Fix false positive for ``keyword-arg-before-vararg`` when a positional-only
106106
parameter with a default value precedes ``*args``.
107107

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

110110

111111

@@ -115,7 +115,7 @@ Other Bug Fixes
115115
- Improve output of ``consider-using-generator`` message for ``min()` calls
116116
with ``default`` keyword.
117117

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

120120

121121
What's new in Pylint 2.17.2?
@@ -130,18 +130,18 @@ False Positives Fixed
130130
- now valid: ``Good2Name``, ``GoodName2``.
131131
- still invalid: ``_1BadName``.
132132

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

135135
- No longer consider ``Union`` as type annotation as type alias for naming
136136
checks.
137137

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

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

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

146146

147147

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

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

156156

157157
What's new in Pylint 2.17.1?

pylint/checkers/mapreduce_checker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
from __future__ import annotations
66

pylint/config/arguments_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def options_by_section(
178178
(section, [list of (optname, optdict, optvalue)])
179179
"""
180180
# TODO 3.0: Make this function private see
181-
# https://github.com/PyCQA/pylint/pull/6665#discussion_r880143229
181+
# https://github.com/pylint-dev/pylint/pull/6665#discussion_r880143229
182182
# It's only used in '_get_global_options_documentation'
183183
warnings.warn(
184184
"options_by_section has been deprecated. It will be removed "

pylint/config/configuration_mixin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
from __future__ import annotations
66

pylint/config/environment_variable.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
import warnings
66

pylint/config/option.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
from __future__ import annotations
66

pylint/config/option_manager_mixin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55

66
# pylint: disable=duplicate-code

pylint/config/option_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
# type: ignore # Deprecated module.
66

pylint/config/options_provider_mixin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
# type: ignore # Deprecated module.
66

pylint/epylint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# -*- vim:fenc=utf-8:ft=python:et:sw=4:ts=4:sts=4
33

44
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
5-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
6-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
5+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
6+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
77

88
"""Emacs and Flymake compatible Pylint.
99

pylint/lint/pylinter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ def _add_one_message(
12701270
msg_cat = MSG_TYPES[message_definition.msgid[0]]
12711271
self.msg_status |= MSG_TYPES_STATUS[message_definition.msgid[0]]
12721272
self.stats.increase_single_message_count(msg_cat, 1)
1273-
# TODO: 3.0 Should be removable after https://github.com/PyCQA/pylint/pull/5580
1273+
# TODO: 3.0 Should be removable after https://github.com/pylint-dev/pylint/pull/5580
12741274
self.stats.increase_single_module_message_count(
12751275
self.current_name, # type: ignore[arg-type]
12761276
msg_cat,

pylint/pyreverse/vcg_printer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
"""Functions to generate files readable with George Sander's vcg
66
(Visualization of Compiler Graphs).

pylint/testutils/functional_test_file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
__all__ = [
66
"FunctionalTestFile",

script/fix_documentation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
"""Small script to fix various issues with the documentation. Used by pre-commit."""
66

tests/config/test_deprecations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
"""Test for deprecation warnings in the config module."""
66

tests/config/unittest_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
"""Unit tests for the config module."""
66

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

tests/test_deprecation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

55
"""Check deprecation across the codebase."""
66

tests/test_epylint.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2-
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
3-
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
2+
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
3+
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
44

5-
"""Test for issue https://github.com/PyCQA/pylint/issues/4286."""
5+
"""Test for issue https://github.com/pylint-dev/pylint/issues/4286."""
66
# pylint: disable=redefined-outer-name
77
from pathlib import PosixPath
88

0 commit comments

Comments
 (0)