This doasn't exactly fit your question but in one of our projects we endet up with a literate programming approach.
We don't want to have all the comments and explanations hanging around in the python source code but also don't want to write the documentation from scratch.
So we write our source files with a mixture of restructured text and python code (which can be nicely done using PyLit).
Than we generate our documentation with Sphinx and the source files with PyLit.
This gives a us a lot of freedom for our documentation (adding images, links etc.) while keeping the real python source code file free from unnecessary explanations (from a programmes point of view).
So a PyLit file chunk like this:

would generated this source file:

and this documentation:
