pydoc 不一致?
我有一个结构如下的包:
a/a1/a1.py
a/a2/a2.py
a/a3/a3.py
在 a3.py 中,我导入了模块 a1 和 a2,如下所示:
import a1.a1
import a2.a2
然后我运行
pydoc -w a/
它会生成 a. html、a.a1.html、a.a1.a1.html、a.a2.html、a.a2.a2.html、a.a3.html、a.a3.a3.html。 a3的问题是,导入的链接,即a1.a1和a2.a2是a1.a1.html和a2.a2.html。它们应该是 a.a1.a1.html 和 a.a2.a2.html。 有人对如何修复它有任何建议吗?谢谢
[更新]。我现在将 a3.py 中的导入更改为:
import a.a1.a1
import a.a2.a2
生成的 a.a3.a3.html 只有一个指向 a 的链接为 a.html。我仍然想要指向 a1.a1 和 a2.a2 的链接。有什么建议吗?
I have a package structured like this:
a/a1/a1.py
a/a2/a2.py
a/a3/a3.py
In a3.py, I imported modules a1 and a2 like these:
import a1.a1
import a2.a2
Then I run
pydoc -w a/
It produces a.html, a.a1.html, a.a1.a1.html, a.a2.html, a.a2.a2.html, a.a3.html, a.a3.a3.html.
The problem with a3 is, the links of the imports, i.e., a1.a1 and a2.a2 are a1.a1.html and a2.a2.html. They are supposed to be a.a1.a1.html and a.a2.a2.html.
Anyone has any suggestions on how to fix it? Thanks
[Update]. I now change the imports in a3.py to:
import a.a1.a1
import a.a2.a2
The generated a.a3.a3.html has only one link to a as a.html. I still want links to a1.a1 and a2.a2. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以:
import a.a1.a1
或from ..a1 import a1
)Well, you could:
import a.a1.a1
orfrom ..a1 import a1
)