Vikram Ramakanth schrieb: > Hi, > I am trying to use Sphinx to document a python project. I used > `autoclass` and noticed that it skips private functions in classes. Is > there any way to force it to generate documentation for private > functions too?
You'll have to manually use automethod directives for them. .. autoclass:: Foo :members: .. automethod:: __iter__ should work. Georg --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en -~----------~----~----~----~------~----~------~--~---
