在product_id product_name price
0001 Mares XR Kevlar Diving Dry Suit 3K
0002 Beuchat Abyss Dry Diving Dry Suit 2050
0003 Typhoon Scuba Dive Dry Suit 1.5K
0004 Scubapro Evertech Drysuit Men 4,059.99
中,我有
mypkg/_core.py
在class SomeClass:
"""Here is my class."""
def __init__(self, x: int):
self.x = x
中,我有
__init__.py
我认为这里有一个默认配置,可以避免记录所有导入的文件,这很好。就我而言,from mypkg._core import SomeClass
是一个私有模块,我不想对其进行记录。我希望将这些文档导出到顶级_core.py
模块文档中。
我希望mypkg
出现在顶级SomeClass
文档中,但事实并非如此。