Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sphinx warnings reference target not found #2398

Open
kloczek opened this issue Mar 15, 2024 · 4 comments · Fixed by #2422
Open

sphinx warnings reference target not found #2398

kloczek opened this issue Mar 15, 2024 · 4 comments · Fixed by #2422
Assignees
Labels
Maintenance Discussion or action around maintaining astroid or the dev workflow Needs PR This issue is accepted, sufficiently specified and now needs an implementation

Comments

@kloczek
Copy link

kloczek commented Mar 15, 2024

First of all currently it is not possible to use straight sphinx-build command to build documentation out of source tree

+ /usr/bin/sphinx-build -n -T -b man doc build/sphinx/man
Running Sphinx v7.2.6

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 358, in eval_config_file
    exec(code, namespace)  # NoQA: S102
  File "/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/conf.py", line 41, in <module>
    from astroid.__pkginfo__ import __version__  # noqa
ModuleNotFoundError: No module named 'astroid'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/cmd/build.py", line 293, in build_main
    app = Sphinx(args.sourcedir, args.confdir, args.outputdir,
  File "/usr/lib/python3.9/site-packages/sphinx/application.py", line 211, in __init__
    self.config = Config.read(self.confdir, confoverrides or {}, self.tags)
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 181, in read
    namespace = eval_config_file(filename, tags)
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 371, in eval_config_file
    raise ConfigError(msg % traceback.format_exc()) from exc
sphinx.errors.ConfigError: There is a programmable error in your configuration file:

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 358, in eval_config_file
    exec(code, namespace)  # NoQA: S102
  File "/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/conf.py", line 41, in <module>
    from astroid.__pkginfo__ import __version__  # noqa
ModuleNotFoundError: No module named 'astroid'
+ /usr/bin/sphinx-build -n -T -b man doc build/sphinx/man
Running Sphinx v7.2.6

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 358, in eval_config_file
    exec(code, namespace)  # NoQA: S102
  File "/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/conf.py", line 41, in <module>
    from astroid.__pkginfo__ import __version__  # noqa
ModuleNotFoundError: No module named 'astroid'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/cmd/build.py", line 293, in build_main
    app = Sphinx(args.sourcedir, args.confdir, args.outputdir,
  File "/usr/lib/python3.9/site-packages/sphinx/application.py", line 211, in __init__
    self.config = Config.read(self.confdir, confoverrides or {}, self.tags)
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 181, in read
    namespace = eval_config_file(filename, tags)
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 371, in eval_config_file
    raise ConfigError(msg % traceback.format_exc()) from exc
sphinx.errors.ConfigError: There is a programmable error in your configuration file:

Traceback (most recent call last):
  File "/usr/lib/python3.9/site-packages/sphinx/config.py", line 358, in eval_config_file
    exec(code, namespace)  # NoQA: S102
  File "/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/conf.py", line 41, in <module>
    from astroid.__pkginfo__ import __version__  # noqa
ModuleNotFoundError: No module named 'astroid'

This can be fixed by patch like below:

--- a/doc/conf.py
+++ b/doc/conf.py
@@ -21,7 +21,7 @@
 # If extensions (or modules to document with autodoc) are in another directory,
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
-sys.path.insert(0, os.path.abspath("../../"))
+sys.path.insert(0, os.path.abspath(".."))

 # -- General configuration -----------------------------------------------------

Please let me know if you want that patch as PR.

@kloczek
Copy link
Author

kloczek commented Mar 15, 2024

Than .. on building my packages I'm using sphinx-build command with -n switch which shows warmings about missing references. These are not critical issues.

+ /usr/bin/sphinx-build -n -T -b man doc build/sphinx/man
Running Sphinx v7.2.6
making output directory... done
[autosummary] generating autosummary for: api/astroid.exceptions.rst, api/astroid.nodes.rst, api/base_nodes.rst, api/general.rst, api/index.rst, changelog.rst, extending.rst, index.rst, inference.rst, whatsnew.rst
[autosummary] generating autosummary for: /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/base_nodes/astroid.nodes.BaseContainer.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/base_nodes/astroid.nodes.ComprehensionScope.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/base_nodes/astroid.nodes.LocalsDictNodeNG.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/base_nodes/astroid.nodes.NodeNG.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/base_nodes/astroid.nodes.Pattern.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.AnnAssign.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.Arguments.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.Assert.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.Assign.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.AssignAttr.rst, ..., /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.Tuple.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.TypeAlias.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.TypeVar.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.TypeVarTuple.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.UnaryOp.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.Unknown.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.While.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.With.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.Yield.rst, /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/nodes/astroid.nodes.YieldFrom.rst
loading intersphinx inventory from https://docs.python.org/dev/objects.inv...
building [mo]: targets for 0 po files that are out of date
writing output...
building [man]: all manpages
updating environment: [new config] 94 added, 0 changed, 0 removed
reading sources... [100%] whatsnew
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Arguments.arguments:1: WARNING: Inline emphasis start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Arguments.arguments:1: WARNING: Inline strong start-string without end-string.
ChangeLog:182: ERROR: Unexpected indentation.
ChangeLog:179: WARNING: Inline literal start-string without end-string.
ChangeLog:179: WARNING: Inline interpreted text or phrase reference start-string without end-string.
ChangeLog:185: WARNING: Block quote ends without a blank line; unexpected unindent.
ChangeLog:186: WARNING: Block quote ends without a blank line; unexpected unindent.
ChangeLog:186: WARNING: Inline literal start-string without end-string.
ChangeLog:186: WARNING: Inline interpreted text or phrase reference start-string without end-string.
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-astroid.3 { inference extending api/index api/general api/astroid.nodes api/nodes/astroid.nodes.AnnAssign api/nodes/astroid.nodes.Arguments api/nodes/astroid.nodes.Assert api/nodes/astroid.nodes.Assign api/nodes/astroid.nodes.AssignAttr api/nodes/astroid.nodes.AssignName api/nodes/astroid.nodes.AsyncFor api/nodes/astroid.nodes.AsyncFunctionDef api/nodes/astroid.nodes.AsyncWith api/nodes/astroid.nodes.Attribute api/nodes/astroid.nodes.AugAssign api/nodes/astroid.nodes.Await api/nodes/astroid.nodes.BinOp api/nodes/astroid.nodes.BoolOp api/nodes/astroid.nodes.Break api/nodes/astroid.nodes.Call api/nodes/astroid.nodes.ClassDef api/nodes/astroid.nodes.Compare api/nodes/astroid.nodes.Comprehension api/nodes/astroid.nodes.Const api/nodes/astroid.nodes.Continue api/nodes/astroid.nodes.Decorators api/nodes/astroid.nodes.DelAttr api/nodes/astroid.nodes.DelName api/nodes/astroid.nodes.Delete api/nodes/astroid.nodes.Dict api/nodes/astroid.nodes.DictComp api/nodes/astroid.nodes.DictUnpack api/nodes/astroid.nodes.EmptyNode api/nodes/astroid.nodes.ExceptHandler api/nodes/astroid.nodes.Expr api/nodes/astroid.nodes.For api/nodes/astroid.nodes.FormattedValue api/nodes/astroid.nodes.FunctionDef api/nodes/astroid.nodes.GeneratorExp api/nodes/astroid.nodes.Global api/nodes/astroid.nodes.If api/nodes/astroid.nodes.IfExp api/nodes/astroid.nodes.Import api/nodes/astroid.nodes.ImportFrom api/nodes/astroid.nodes.JoinedStr api/nodes/astroid.nodes.Keyword api/nodes/astroid.nodes.Lambda api/nodes/astroid.nodes.List api/nodes/astroid.nodes.ListComp api/nodes/astroid.nodes.Match api/nodes/astroid.nodes.MatchAs api/nodes/astroid.nodes.MatchCase api/nodes/astroid.nodes.MatchClass api/nodes/astroid.nodes.MatchMapping api/nodes/astroid.nodes.MatchOr api/nodes/astroid.nodes.MatchSequence api/nodes/astroid.nodes.MatchSingleton api/nodes/astroid.nodes.MatchStar api/nodes/astroid.nodes.MatchValue api/nodes/astroid.nodes.Module api/nodes/astroid.nodes.Name api/nodes/astroid.nodes.Nonlocal api/nodes/astroid.nodes.ParamSpec api/nodes/astroid.nodes.Pass api/nodes/astroid.nodes.Raise api/nodes/astroid.nodes.Return api/nodes/astroid.nodes.Set api/nodes/astroid.nodes.SetComp api/nodes/astroid.nodes.Slice api/nodes/astroid.nodes.Starred api/nodes/astroid.nodes.Subscript api/nodes/astroid.nodes.Try api/nodes/astroid.nodes.TryStar api/nodes/astroid.nodes.Tuple api/nodes/astroid.nodes.TypeAlias api/nodes/astroid.nodes.TypeVar api/nodes/astroid.nodes.TypeVarTuple api/nodes/astroid.nodes.UnaryOp api/nodes/astroid.nodes.Unknown api/nodes/astroid.nodes.While api/nodes/astroid.nodes.With api/nodes/astroid.nodes.Yield api/nodes/astroid.nodes.YieldFrom api/base_nodes api/base_nodes/astroid.nodes.BaseContainer api/base_nodes/astroid.nodes.ComprehensionScope api/base_nodes/astroid.nodes.LocalsDictNodeNG api/base_nodes/astroid.nodes.NodeNG api/base_nodes/astroid.nodes.Pattern api/astroid.exceptions whatsnew changelog genindex /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/index.rst: WARNING: toctree contains ref to nonexisting file 'genindex'
modindex /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/index.rst: WARNING: toctree contains ref to nonexisting file 'modindex'
} /home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:16: WARNING: py:meth reference target not found: NodeNG.infer
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:21: WARNING: py:meth reference target not found: infer
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:24: WARNING: py:obj reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:24: WARNING: py:class reference target not found: Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:28: WARNING: py:obj reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:28: WARNING: py:class reference target not found: Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:64: WARNING: py:meth reference target not found: repr_tree
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:64: WARNING: py:meth reference target not found: repr_tree
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:69: WARNING: py:func reference target not found: astroid.extract_node
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:78: WARNING: py:func reference target not found: astroid.extract_node
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/inference.rst:95: WARNING: py:meth reference target not found: infer
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/extending.rst:237: WARNING: py:class reference target not found: astroid.Module
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/doc/api/astroid.nodes.rst:90:<autosummary>:1: WARNING: py:attr reference target not found: LocalsDictNodeNG.locals
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AnnAssign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AnnAssign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.assign_annassigned_stmts:1: WARNING: py:class reference target not found: node_classes.AssignedStmtsPossibleNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.assign_annassigned_stmts:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Arguments:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.arguments_assigned_stmts:1: WARNING: py:class reference target not found: node_classes.AssignedStmtsPossibleNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.arguments_assigned_stmts:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Assert:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Assign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Assign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AssignAttr:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AssignAttr:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ParentAssignNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.assend_assigned_stmts:1: WARNING: py:class reference target not found: node_classes.AssignedStmtsPossibleNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.assend_assigned_stmts:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AssignName:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AssignName:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AssignName:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ParentAssignNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.assend_assigned_stmts:1: WARNING: py:class reference target not found: node_classes.AssignedStmtsPossibleNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.assend_assigned_stmts:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.AssignName.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AugAssign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AugAssign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.OperatorNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AugAssign:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AugAssign.type_errors:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AugAssign.type_errors:3: WARNING: py:class reference target not found: BadBinaryOperationMessage
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.AugAssign.type_errors:1: WARNING: py:class reference target not found: BadBinaryOperationMessage
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BinOp:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.OperatorNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BinOp.type_errors:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BinOp.type_errors:3: WARNING: py:class reference target not found: BadBinaryOperationMessage
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BinOp.type_errors:1: WARNING: py:class reference target not found: BadBinaryOperationMessage
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.BoolOp.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Break:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Break:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Break.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.FilterStmtsBaseNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.ancestors:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.ClassDef.bases:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.declared_metaclass:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.declared_metaclass:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.frame:1: WARNING: py:class reference target not found: astroid.nodes.scoped_nodes.scoped_nodes._T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.getattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.getattr:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.getattr:3: WARNING: py:attr reference target not found: instance_attrs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.getattr:3: WARNING: py:class reference target not found: Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.getattr:3: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.getitem:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.has_dynamic_getattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.igetattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.igetattr:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.implicit_metaclass:1: WARNING: py:class reference target not found: builtins.type
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.infer_call_result:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.infer_call_result:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.infer_call_result:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.instance_attr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.instance_attr_ancestors:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.instance_attr_ancestors:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.instantiate_class:1: WARNING: py:class reference target not found: astroid.bases.Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.instantiate_class:1: WARNING: py:class reference target not found: Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.instantiate_class:3: WARNING: py:class reference target not found: Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.is_subtype_of:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.local_attr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.local_attr_ancestors:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.local_attr_ancestors:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.ClassDef.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.metaclass:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.metaclass:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.methods:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.mro:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.mymethods:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.postinit:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.postinit:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ClassDef.scope_lookup:1: WARNING: py:class reference target not found: LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.ClassDef.special_attributes:3: WARNING: py:class reference target not found: objectmodel.ClassModel
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.ClassDef.type_params:3: WARNING: py:class reference target not found: PEP 695
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.ClassDef.type_params:3: WARNING: py:class reference target not found: Python 3.12+
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.ClassDef.type_params:3: WARNING: py:class reference target not found: type params
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.ClassDef.type_params:3: WARNING: py:class reference target not found: e.g. class MyClass
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.ClassDef.type_params:3: WARNING: py:class reference target not found: T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Compare.get_children:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Const:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Const:1: WARNING: py:class reference target not found: astroid.bases.Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Const.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Const.getitem:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Const.itered:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Const.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Continue:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Continue:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Continue.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.DelAttr:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ParentAssignNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.DelName:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.DelName:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.DelName:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ParentAssignNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.DelName.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Delete:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Delete:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Delete.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict:1: WARNING: py:class reference target not found: astroid.objects.DictInstance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict.get_children:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict.getitem:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Dict.items:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Dict.items:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict.itered:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Dict.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict.postinit:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Dict.postinit:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.DictComp.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.DictComp.bool_value:3: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.DictComp.bool_value:1: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.DictComp.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.DictUnpack:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.DictUnpack.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.EmptyNode:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.EmptyNode.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.ExceptHandler:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.ExceptHandler:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.ExceptHandler:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Expr:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.For:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineWithElseBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.For:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.For:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.FormattedValue.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.FilterStmtsBaseNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.decoratornames:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.frame:1: WARNING: py:class reference target not found: astroid.nodes.scoped_nodes.scoped_nodes._T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.getattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.igetattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.igetattr:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.infer_call_result:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.infer_call_result:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.infer_call_result:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.infer_yield_result:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.infer_yield_result:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.infer_yield_result:1: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.FunctionDef.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.postinit:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.FunctionDef.scope_lookup:1: WARNING: py:class reference target not found: LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.FunctionDef.type_params:3: WARNING: py:class reference target not found: PEP 695
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.FunctionDef.type_params:3: WARNING: py:class reference target not found: Python 3.12+
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.FunctionDef.type_params:3: WARNING: py:class reference target not found: type params
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.FunctionDef.type_params:3: WARNING: py:class reference target not found: e.g. first 'T' in def func
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.FunctionDef.type_params:3: WARNING: py:class reference target not found: T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/docstring of astroid.nodes.FunctionDef.type_params:3: WARNING: py:class reference target not found: -> T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.GeneratorExp.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.GeneratorExp.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Global:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Global:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Global.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.If:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineWithElseBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.If:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Import:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ImportNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.ImportFrom:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ImportNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.JoinedStr.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.FilterStmtsBaseNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.frame:1: WARNING: py:class reference target not found: astroid.nodes.scoped_nodes.scoped_nodes._T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.getattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.infer_call_result:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.infer_call_result:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.infer_call_result:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.Lambda.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Lambda.scope_lookup:1: WARNING: py:class reference target not found: LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.List:1: WARNING: py:class reference target not found: Context
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.sequence_assigned_stmts:1: WARNING: py:class reference target not found: node_classes.AssignedStmtsPossibleNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.sequence_assigned_stmts:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.List.ctx:1: WARNING: py:class reference target not found: Context
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.List.elts:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.List.getitem:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.List.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ListComp.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ListComp.bool_value:3: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.ListComp.bool_value:1: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.ListComp.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Match:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Match:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.MatchAs:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchAs.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.MatchCase:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchClass.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.MatchMapping:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchMapping.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchOr.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchSequence.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchSingleton.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.MatchStar:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchStar.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.MatchValue.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.Module.body:1: WARNING: py:class reference target not found: node_classes.NodeNG
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.frame:1: WARNING: py:class reference target not found: astroid.nodes.scoped_nodes.scoped_nodes._T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.getattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.Module.globals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.igetattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.igetattr:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.Module.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.postinit:1: WARNING: py:class reference target not found: node_classes.NodeNG
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.scope_lookup:1: WARNING: py:class reference target not found: LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.scope_lookup:1: WARNING: py:class reference target not found: node_classes.NodeNG
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.Module.stream:3: WARNING: py:class reference target not found: file
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Name:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Name:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Name.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Nonlocal:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Nonlocal:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Nonlocal.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.ParamSpec:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Pass:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.NoChildrenNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Pass:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Pass.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Raise:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Return:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Set.elts:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Set.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.SetComp.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.SetComp.bool_value:3: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.scoped_nodes.scoped_nodes.SetComp.bool_value:1: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/scoped_nodes.py:docstring of astroid.nodes.SetComp.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Slice.getattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Slice.igetattr:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Slice.igetattr:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Starred:1: WARNING: py:class reference target not found: Context
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Starred:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ParentAssignNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Subscript:1: WARNING: py:class reference target not found: Context
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Try:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineWithElseBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Try:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.TryStar:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineWithElseBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.TryStar:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Tuple:1: WARNING: py:class reference target not found: Context
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.sequence_assigned_stmts:1: WARNING: py:class reference target not found: node_classes.AssignedStmtsPossibleNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.protocols.sequence_assigned_stmts:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Tuple.ctx:1: WARNING: py:class reference target not found: Context
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Tuple.elts:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Tuple.getitem:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Tuple.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.TypeAlias:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.TypeAlias:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.TypeVar:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.TypeVarTuple:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.yes_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.UnaryOp:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.OperatorNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.UnaryOp.type_errors:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.UnaryOp.type_errors:3: WARNING: py:class reference target not found: BadUnaryOperationMessage
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.UnaryOp.type_errors:1: WARNING: py:class reference target not found: BadUnaryOperationMessage
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.Unknown:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Unknown.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.While:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineWithElseBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.While:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.With:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.MultiLineWithElseBlockNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.With:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.AssignTypeNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.With:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: _P.kwargs
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.decorators.raise_if_nothing_inferred.<locals>.inner:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.With.get_children:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.YieldFrom.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BaseContainer:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.ParentAssignNode
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BaseContainer:1: WARNING: py:class reference target not found: astroid.bases.Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BaseContainer.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.BaseContainer.elts:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BaseContainer.from_elements:1: WARNING: py:class reference target not found: typing_extensions.Self
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BaseContainer.itered:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.node_classes.BaseContainer.postinit:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/mixin.py:docstring of astroid.nodes.scoped_nodes.mixin.LocalsDictNodeNG._scope_lookup:1: WARNING: py:class reference target not found: _base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/mixin.py:docstring of astroid.nodes.scoped_nodes.mixin.LocalsDictNodeNG:1: WARNING: py:class reference target not found: astroid.nodes._base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/mixin.py:docstring of astroid.nodes.LocalsDictNodeNG.locals:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/mixin.py:docstring of astroid.nodes.scoped_nodes.mixin.LocalsDictNodeNG.scope:1: WARNING: py:class reference target not found: astroid.nodes.scoped_nodes.mixin._T
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/mixin.py:docstring of astroid.nodes.scoped_nodes.mixin.LocalsDictNodeNG.scope:1: WARNING: py:class reference target not found: GenExpr
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/scoped_nodes/mixin.py:docstring of astroid.nodes.scoped_nodes.mixin.LocalsDictNodeNG.scope_lookup:1: WARNING: py:class reference target not found: _base_nodes.LookupMixIn
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.accept:1: WARNING: py:class reference target not found: astroid.nodes.as_string.AsStringVisitor
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.bool_value:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.bool_value:1: WARNING: py:class reference target not found: Uninferable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.child_sequence:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.infer:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.infer:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.infer:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.locate_child:1: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT2
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: _NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: _NodesT2
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT2
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT3
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: _NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: _NodesT2
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: _NodesT3
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:1: WARNING: py:class reference target not found: astroid.nodes.node_ng._NodesT
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.nodes_of_class:5: WARNING: py:attr reference target not found: klass
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.NodeNG.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.repr_name:3: WARNING: py:attr reference target not found: name
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.repr_name:3: WARNING: py:attr reference target not found: attrname
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_ng.py:docstring of astroid.nodes.node_ng.NodeNG.statement:1: WARNING: py:class reference target not found: _base_nodes.Statement
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/nodes/node_classes.py:docstring of astroid.nodes.Pattern.position:1: WARNING: py:class reference target not found: Position
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.AstroidIndexError:1: WARNING: py:class reference target not found: bases.Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.AstroidIndexError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.AstroidTypeError:1: WARNING: py:class reference target not found: bases.Instance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.AstroidTypeError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.AttributeInferenceError:1: WARNING: py:class reference target not found: bases.BaseInstance
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.AttributeInferenceError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.DuplicateBasesError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InconsistentMroError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: SuccessfulInferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: arguments.CallSite
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.InferenceError:1: WARNING: py:class reference target not found: InferenceResult
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.MroError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.NameInferenceError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.ResolveError:1: WARNING: py:class reference target not found: InferenceContext
/home/tkloczko/rpmbuild/BUILD/astroid-3.1.0/astroid/exceptions.py:docstring of astroid.exceptions.SuperError:1: WARNING: py:class reference target not found: objects.Super
done
build succeeded, 385 warnings.

You can peak on fixes that kind of issues in other projects
RDFLib/rdflib-sqlalchemy#95
RDFLib/rdflib#2036
click-contrib/sphinx-click@abc31069
frostming/unearth#14
jaraco/cssutils#21
latchset/jwcrypto#289
latchset/jwcrypto#289
pypa/distlib@98b9b89f
pywbem/pywbem#2895
sissaschool/elementpath@bf869d9e
sissaschool/xmlschema@42ea98f2
sqlalchemy/sqlalchemy@5e88e6e8

@Pierre-Sassoulas
Copy link
Member

Hey @kloczek thank you for the investigation. As long as the doc keeps being generated correctly in the continuous integration a PR would be greatly appreciated :) !

@Pierre-Sassoulas Pierre-Sassoulas added Maintenance Discussion or action around maintaining astroid or the dev workflow Needs PR This issue is accepted, sufficiently specified and now needs an implementation labels Mar 18, 2024
@kloczek
Copy link
Author

kloczek commented Mar 18, 2024

Hey @kloczek thank you for the investigation. As long as the doc keeps being generated correctly in the continuous integration a PR would be greatly appreciated :) !

In this case those warnings are not affection rendered output document however in case of html, qca and probably pdf in documents is possible to see highlighted parts but no added links (because sphinx cannod find correct refs)
As you see I'm generating roff output (AKA man page) so I'm not affected but those warnings.
I've reported found issue as part of my packaging reviews/checks/feedbacks check list😋
In links I've provides are good examples of how to deal with those warning provided by other maintainers when I've reported similar case against other projects.
Nevertheless .. this is not critical issue.
I would like to help but if you will look on my gh status you can see that I'm kind of busy ..😛

@jacobtylerwalls jacobtylerwalls self-assigned this May 4, 2024
@jacobtylerwalls jacobtylerwalls added this to the 3.2.0 milestone May 4, 2024
jacobtylerwalls added a commit that referenced this issue May 4, 2024
This file was moved in
44f0065.

Closes #2398
Pierre-Sassoulas added a commit that referenced this issue May 4, 2024
This file was moved in
44f0065.

Also comment some formatting change in git blame ignore list.

Closes #2398

Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
@kloczek
Copy link
Author

kloczek commented May 5, 2024

Fixing that path was only preface to actual ticket 😋

@jacobtylerwalls jacobtylerwalls removed this from the 3.2.0 milestone May 5, 2024
@jacobtylerwalls jacobtylerwalls changed the title 3.1.0: sphinx warnings reference target not found sphinx warnings reference target not found May 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Maintenance Discussion or action around maintaining astroid or the dev workflow Needs PR This issue is accepted, sufficiently specified and now needs an implementation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants