/
githubmirror
/
scrapy
Обзор
Документация
Войти
/
githubmirror
/
scrapy
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/_ext/scrapyfixautodoc.py
21 строка
647 B
Sanjay M
Fix small documentation wording issues (#7480)
04 май 2026, 09:43
Не верифицирован
04 май 2026, 09:43
a9324fb
Код
Авторство
О чём код?
""" Must be included after 'sphinx.ext.autodoc'. Fixes unwanted 'alias of' behavior. https://github.com/sphinx-doc/sphinx/issues/4422 """ from typing import Any # pylint: disable=import-error from sphinx.application import Sphinx def maybe_skip_member(app: Sphinx, what, name: str, obj, skip: bool, options) -> bool: if not skip: # autodoc was generating the text "alias of" for the following members return name in {"default_item_class", "default_selector_class"} return skip def setup(app: Sphinx) -> dict[str, Any]: app.connect("autodoc-skip-member", maybe_skip_member) return {"parallel_read_safe": True}