Hi, I'm trying to document all module-level constants from a .so module. I don't want to list them, since there's too many of them, but have autodoc show all. I have:
.. automodule:: id128 :members: :undoc-members: :inherited-members: This correctly inserts documentation for three methods defined in the id128 module, but skips constants defined with PyModule_AddObject(module, name, obj); and are visible in the module: >>> dir(id128) ['SD_MESSAGE_COREDUMP', ...] Thanks, Zbyszek -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sphinx-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
