Tagged Questions
15
votes
4answers
12k views
Can I document Python code with doxygen (and does it make sense)?
I like doxygen to create documentation of C or PHP code. I have an upcoming Python project and I think I remember that Python doesn't have /* .. */ comments and also has its own self-documentation ...
7
votes
2answers
347 views
documenting class attributes
I'm writing a lightweight class whose attributes are intended to be publicly accessible, and only sometimes overridden in specific instantiations. There's no provision in the Python language for ...
6
votes
1answer
93 views
Docstring tag for 'yield' keyword
There are some tags for docstrings in python, like @param and @return, for example:
def my_method(a_param):
''' @param a_param: Description of this param
@return: The return value of the ...
6
votes
2answers
1k views
Python documentation standard for docstring
I am currently beginning with python and I have a strong PHP background and in PHP I have took the habit of using javadoc as a documentation template. I was wondering if javadoc has its place as the ...
4
votes
3answers
511 views
Replacing python docstrings
I have written a epytext to reST markup converter, and now I want to convert all the docstrings in my entire library from epytext to reST format.
Is there a smart way to read the all the docstrings ...
3
votes
5answers
348 views
How should unit tests be documented?
I'm trying to improve the number and quality of tests in my Python projects. One of the the difficulties I've encountered as the number of tests increase is knowing what each test does and how it's ...
2
votes
2answers
461 views
How can I make Python/Sphinx document object attributes only declared in __init__?
I have Python classes with object attributes which are only declared as part of running the constructor, like so:
class Foo(object):
def __init__(self, base):
self.basepath = base
...
0
votes
4answers
175 views
Python solution for creating documentation from source files
I have lots of Python (2.x) source files in a quite large project. Most of them is quite well documented - in docstrings, or comments at the beginning of classes/methods.
What I look for is a tool ...
-1
votes
3answers
111 views
How to create documentation from Python source
I was trying to understand how to build documentation from a Python source (like JavaDoc), but I am confused. I read about Sphinx and reStructuredText, but I didn't find an example, how to create ...