hi there --
i really like using autodocs in sphinx to complement handwritten
"tutorial-style" docs
when i use ":members:" to include the members of an automodule, the members
(e.g. functions inside of the module) appear in the documentation in the
same order in which they appear in the module, e.g. when i write:
.. automodule:: module.name
:members:
however, when i use ":members:" to include the members of an autoclass, the
members (e.g. class methods) appear in alphabetical order, e.g. when i
write:
.. autoclass:: class.name
:members:
i would really like to have the class methods automatically appear in the
same order in which they appear in the class. this can be useful when the
class methods are grouped conceptually.
is there a configuration setting i am not using properly? something else?
thanks for any help!
elaine
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---