在Sphinx中交叉引用Python对象有哪些要求?

What requirements are there for cross-referencing a Python object in Sphinx?(在Sphinx中交叉引用Python对象有哪些要求?)
本文介绍了在Sphinx中交叉引用Python对象有哪些要求?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用:class:,收到很多警告

WARNING: py:class reference target not found: mypkg.submodule.class

我在文档中找不到正确交叉引用的确切要求。

这是我认为有以下要求的不完整列表:

  • 对象的模块需要是可导入的
  • 该对象需要存在于模块内部
  • 该对象需要使用:py:class:::py:func::或类似指令记录在构建中的其他位置
    • 此指令可以由autodoc扩展生成,在这种情况下,对象需要具有与其关联的文档字符串。

推荐答案

要进行交叉引用,必须首先声明

Python域(名称为py)为模块declarations提供了以下指令:

有两种情况需要考虑:

  • domain directives(.. domain:directive_name::)和
  • roles(:domain:role_name:)。

您指定的:class:的大小写实际上是编写角色:py:class:的简化语法,不要与指令声明.. py:class::混淆。

此指令可以由AutoDoc扩展生成,在这种情况下,对象需要具有与其关联的文档字符串。

指令声明是由AutoDoc隐式完成的,但对于要由AutoDoc声明的没有文档字符串的对象,您必须使用:undoc-members: option with the autodoc directives。

没有文档字符串的成员将被忽略,除非您提供UNDOC-Members标志选项:

.. automodule:: noodle    
   :members:    
   :undoc-members: 

声明对象的一个效果是将其插入索引中。因此,您可以检查索引以确保它已被声明和插入。(但是请注意,labels used in referencing arbitrary locations不会插入到索引中。)

这篇关于在Sphinx中交叉引用Python对象有哪些要求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)