I'm documenting a huge Django project and would like to have an option to hide autogenerated Django stuff like below. Is it something I have to "deal with" or is there a setting I haven't found yet?
I document with:
.. automodule:: module.models
:members:
and get things like below, which would be good if I had those overriden, but they're not:
exception DoesNotExist
exception MultipleObjectsReturned
save(*args, **kwargs):...