summaryrefslogtreecommitdiff
path: root/tests/testdata/python3
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-29 13:54:24 +0200
committerDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-03-29 19:19:40 +0200
commit6714f15531c78d98860d8b17123d4308205aecc6 (patch)
tree701adef92867cc5f5d974d64446b72c3ab7363b4 /tests/testdata/python3
parent7d76924a8ef0053be6484fe12e8c6c23d7145ab5 (diff)
downloadastroid-git-6714f15531c78d98860d8b17123d4308205aecc6.tar.gz
[PyCQA migration] Upgrade links to the repositories in code and doc
Diffstat (limited to 'tests/testdata/python3')
-rw-r--r--tests/testdata/python3/data/max_inferable_limit_for_classes/main.py2
-rw-r--r--tests/testdata/python3/data/metaclass_recursion/monkeypatch.py2
-rw-r--r--tests/testdata/python3/data/metaclass_recursion/parent.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/testdata/python3/data/max_inferable_limit_for_classes/main.py b/tests/testdata/python3/data/max_inferable_limit_for_classes/main.py
index 2588d916..5f64c2e5 100644
--- a/tests/testdata/python3/data/max_inferable_limit_for_classes/main.py
+++ b/tests/testdata/python3/data/max_inferable_limit_for_classes/main.py
@@ -1,6 +1,6 @@
"""This example is based on sqlalchemy.
-See https://github.com/PyCQA/pylint/issues/5679
+See https://github.com/pylint-dev/pylint/issues/5679
"""
from other_funcs import FromClause
diff --git a/tests/testdata/python3/data/metaclass_recursion/monkeypatch.py b/tests/testdata/python3/data/metaclass_recursion/monkeypatch.py
index 757bb3f8..0f16a3b5 100644
--- a/tests/testdata/python3/data/metaclass_recursion/monkeypatch.py
+++ b/tests/testdata/python3/data/metaclass_recursion/monkeypatch.py
@@ -1,4 +1,4 @@
-# https://github.com/PyCQA/astroid/issues/749
+# https://github.com/pylint-dev/astroid/issues/749
# Not an actual module but allows us to reproduce the issue
from tests.testdata.python3.data.metaclass_recursion import parent
diff --git a/tests/testdata/python3/data/metaclass_recursion/parent.py b/tests/testdata/python3/data/metaclass_recursion/parent.py
index 5cff73e0..28d021bd 100644
--- a/tests/testdata/python3/data/metaclass_recursion/parent.py
+++ b/tests/testdata/python3/data/metaclass_recursion/parent.py
@@ -1,3 +1,3 @@
-# https://github.com/PyCQA/astroid/issues/749
+# https://github.com/pylint-dev/astroid/issues/749
class OriginalClass:
pass