ในช่วงหลายปีที่ผ่านมาผมเคยเขียนหลายสายพันธุ์ของautodoc-skip-member
การเรียกกลับสำหรับโครงการหลามต่าง ๆ ที่ไม่เกี่ยวข้องกันเพราะผมอยากวิธีการเช่น__init__()
, __enter__()
และ__exit__()
จะแสดงในเอกสาร API ของฉัน (หลังจากทั้งหมดเหล่านี้ "วิธีพิเศษ" เป็นส่วนหนึ่งของ API และสิ่งที่ดีในการ จัดทำเอกสารไว้ใน docstring ของวิธีการพิเศษ)
เมื่อเร็ว ๆ นี้ฉันได้ใช้งานที่ดีที่สุดและทำให้เป็นส่วนหนึ่งของโครงการ Python ของฉัน ( นี่คือเอกสารประกอบ ) การใช้งานโดยทั่วไปจะลงมาดังนี้:
import types
def setup(app):
"""Enable Sphinx customizations."""
enable_special_methods(app)
def enable_special_methods(app):
"""
Enable documenting "special methods" using the autodoc_ extension.
:param app: The Sphinx application object.
This function connects the :func:`special_methods_callback()` function to
``autodoc-skip-member`` events.
.. _autodoc: http://www.sphinx-doc.org/en/stable/ext/autodoc.html
"""
app.connect('autodoc-skip-member', special_methods_callback)
def special_methods_callback(app, what, name, obj, skip, options):
"""
Enable documenting "special methods" using the autodoc_ extension.
Refer to :func:`enable_special_methods()` to enable the use of this
function (you probably don't want to call
:func:`special_methods_callback()` directly).
This function implements a callback for ``autodoc-skip-member`` events to
include documented "special methods" (method names with two leading and two
trailing underscores) in your documentation. The result is similar to the
use of the ``special-members`` flag with one big difference: Special
methods are included but other types of members are ignored. This means
that attributes like ``__weakref__`` will always be ignored (this was my
main annoyance with the ``special-members`` flag).
The parameters expected by this function are those defined for Sphinx event
callback functions (i.e. I'm not going to document them here :-).
"""
if getattr(obj, '__doc__', None) and isinstance(obj, (types.FunctionType, types.MethodType)):
return False
else:
return skip
ใช่มีเอกสารประกอบมากกว่าตรรกะ :-) ข้อดีของการกำหนดการautodoc-skip-member
เรียกกลับเช่นนี้ในการใช้special-members
ตัวเลือก (สำหรับฉัน) คือspecial-members
ตัวเลือกนี้ยังเปิดใช้งานเอกสารคุณสมบัติเช่น__weakref__
(มีอยู่ในคลาสสไตล์ใหม่ทั้งหมด AFAIK) ซึ่งฉันคิดว่าเสียงรบกวนและไม่มีประโยชน์เลย วิธีการเรียกกลับจะหลีกเลี่ยงสิ่งนี้ (เนื่องจากใช้ได้เฉพาะกับฟังก์ชัน / วิธีการและละเว้นแอตทริบิวต์อื่น ๆ )
"both" Both the class’ and the __init__ method’s docstring are concatenated and inserted.
-> ดังนั้นจึงไม่ควรเป็นเพียง__init__(self)
docstring ของคลาสเท่านั้นหากคุณมี คุณสามารถจัดหากรณีทดสอบได้หรือไม่เพราะถ้าเป็นเช่นนั้นจะรู้สึกเหมือนมีข้อบกพร่องใช่ไหม?