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 ...
14
votes
2answers
144 views
Inheriting methods' docstrings in Python
I have an OO hierarchy with docstrings that take as much maintenance as the code itself. E.g.,
class Swallow(object):
def airspeed(self):
"""Returns the airspeed (unladen)"""
...
12
votes
3answers
430 views
Docstrings for data?
Is there a way to describe the module's data in a similar way that a docstring describes a module or a funcion?
class MyClass(object):
def my_function():
"""This docstring works!"""
...
8
votes
1answer
55 views
Automatically checking docstrings style
Tools like pep8 can check source code style, but they don't check if docstrings are fromatted according to pep257, pep287. Are there such tools?
8
votes
3answers
944 views
Python Decorator Problem with Docstrings
I have a problem using docstrings with decorators. Given the following example:
def decorator(f):
def _decorator():
print 'decorator active'
f()
return _decorator
@decorator
...
8
votes
3answers
475 views
Adding docstrings to namedtuples in Python?
Is it possible to add a documentation string to a namedtuple in an easy manner?
I tried
from collections import namedtuple
Point = namedtuple("Point", ["x", "y"])
"""
A point in 2D space
"""
# Yet ...
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 ...
7
votes
6answers
2k views
How to write meaningful docstrings?
What, in Your opinion is a meaningful docstring? What do You expect to be described there?
For example, consider this Python class's __init__:
def __init__(self, name, value, displayName=None, ...
6
votes
1answer
92 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 ...
6
votes
2answers
501 views
Commenting JavaScript functions á la Python Docstrings
It is valid JavaScript to write something like this:
function example(x) {
"Here is a short doc what I do.";
// code of the function
}
The string actually does nothing. Is there any reason, ...
5
votes
2answers
69 views
In emacs Python mode, how do I set a different auto-fill width for docstrings and code?
I would like to have auto-fill set to 79 columns for code sections and 72 for docstrings to get automatic PEP8 compliance. There seems to be an option to do this for Lisp mode ...
5
votes
1answer
489 views
Can I view the doc string of a function in Python using VIM?
Is there any way to view a function's doc string when writing Python in VIM?
For instance:
def MyFunction(spam):
"""A function that foobars the spam
returns eggs"""
return ...
4
votes
1answer
327 views
How do I change Emacs's font face for Python docstrings?
I'm just starting to learn Python and use Emacs as my editor. Currently, Emacs uses the same color for normal strings (single quotes) and docstrings (triple quotes). I want docstrings to be a ...
4
votes
3answers
510 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
1answer
56 views
Doctest for nested docstring
Suppose I have following code:
def foo(s):
"""A dummy function foo. For example:
>>> a = '''This is a test string line 1
This is a test string line 2
This is a test string line 3'''
...
3
votes
1answer
111 views
Is there a way to keep docstrings separate from the functions they document?
I'm working on a module with many small functions but whose docstrings tend to be quite long. The docstrings make working on the module irritating as I have to constantly scroll over a long docstring ...
3
votes
5answers
189 views
More than 1 docstrings for a single module/function etc.?
I'm using python 3.1.
Is it possible to create more than 1 docstring for a single module or function?
I'm creating a program, and I'm intending to have multiple docstrings with a category for each. I ...
3
votes
4answers
444 views
Are Python docstrings and comments stored in memory when module is loaded?
Are Python docstrings and comments stored in memory when module is loaded?
I've wondered if this is true, because I usually document my code well; may this affect memory usage?
Usually every ...
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
5answers
93 views
How to print Docstring of python function from inside the function itself?
I want to print the docstring of a python function from inside the function itself.
for eg.
def my_function(self)
""Docstring for my function""
#print the Docstring here.
At the moment I am ...
2
votes
1answer
73 views
docstring that works with a Python class property?
I have a class defined below that has a class property called 'prop', and I want the docstring 'this is a property comment' to print out. The current behavior executes the getter for the property and ...
2
votes
2answers
115 views
Python docstring parsing(and generally parsing languages in Python)
I would like to generate useful documentation for a REST API written in Python.
I imagine it should be something like this:
'''
/kittens/
This method creates kittens in the browser
HTTP Params:
...
2
votes
2answers
255 views
Structured python docstrings, IDE-friendly
In PHP I was used to PHPdoc syntax:
/** Do something useful
@param first Primary data
@return int
@throws BadException
*/
function($first){ ...
— kinda short useful reference: very handy when ...
2
votes
4answers
319 views
Writing docstrings - specifying functions arguments and returns
Suppose I have a function, say:
>>> def foo(a):
return a+1
I want to write a documentation string for it.
what is the convention in specifying in the docstring that it takes a and ...
2
votes
2answers
459 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
...
2
votes
3answers
150 views
Repetitive content in docstrings
What are good ways to deal with repetitive content in docstrings? I have many functions that take 'standard' arguments, which have to be explained in the docstring, but it would be nice to write the ...
2
votes
1answer
323 views
How to spell check python docstring with emacs?
I'd like to run a spell checker on the docstrings of my Python code, if possible from within emacs.
I've found the ispell-check-comments setting which can be used to spell check only comments in ...
2
votes
3answers
137 views
Python: Why does this doc test fail?
This code that's in the doctest works when run by itself, but in this doctest it fails in 10 places. I can't figure out why it does though. The following is the entire module:
class ...
2
votes
1answer
186 views
Doctest for dynamically created objects
What is the best way to test code like this (the one below obviously fails while object is created in different block every time):
def get_session(db_name, verbose, test):
"""Returns current DB ...
1
vote
1answer
67 views
What's the pythonic way to assign default values to be printed by help()?
I have written the following script to load and assign the default values for the fields that help() searches for:
import os
os.chdir(os.path.dirname(os.path.abspath(__file__ )))
def ...
1
vote
2answers
63 views
Scripts that Rely on Docstrings?
From the 2.7.2 docs, Section 6, Modules:
Passing two -O flags to the Python interpreter (-OO) will cause the bytecode compiler to perform optimizations that could in some rare cases result in ...
1
vote
1answer
58 views
Getting doc string of a python file
Is there a way of getting the doc string of a python file if I have only the name of the file ? For instance I have a python file named a.py. I know that it has a doc string ( being mandated before) ...
1
vote
1answer
43 views
Python- initialisation of built in variables/attributes
When and how are the builtin attributes initialized?
__doc__, __name__ (I guess I know about this one :) ), __class__, __setattr__ etc.
In my other question regarding docstrings, one of the answers ...
1
vote
1answer
79 views
python docstrings not working?
def myfunc():
""" My docstring """
print "hello"
help(myfunc)
I get
'more' is not recognized as an internal or external command,
operable program or batch file.
Windows 7 64bit, Python ...
1
vote
4answers
89 views
help with python “help” function: printing docstrings
Is there an option to print the output of help('myfun'). The behaviour I'm seeing is that output is printed to std.out and the script waits for user input (i.e. type 'q' to continue).
There must be a ...
1
vote
1answer
108 views
Is there a way to make Eclipse+PyDev display function documentation like Python's help() would?
I would like to force Eclipse to show Python's help output in the popup instead of the whole function, i.e. given:
def myFunc(arg):
'''Function description'''
return 1
I would like the code ...
1
vote
1answer
140 views
Printing docstrings in Python 3
How do you print doc strings in python 3.1.x?
I tried with the re and sys modules as a test and I keep getting errors. Thanks
import re
print(re._doc_)
Traceback (most recent call last):
File ...
1
vote
1answer
84 views
Put docstrings on special methods?
I'm trying to decide what information to put in the class docstring and what to put in the __init__ method docstring. Up until now I've been putting an overview of the class and how to work with it in ...
1
vote
3answers
91 views
store html templates in docstrings?
I am using Flask to write a web service for an internal app here at my work. Many of the web services URI's return HTML partials, and I am trying to figure out a clean way to store the html template ...
1
vote
2answers
372 views
about python __doc__ docstring
i want to show docstring of my function,
but if i use like this
@cost_time
def func():
"define ...."
blabla
print func.__doc__
it will not show the docstring,just because i use some meta ...
0
votes
0answers
43 views
View reStructuredText (Sphinx) docstrings in iPython?
Is there a way to have IPython fully render reStructuredText (for Sphinx) docstrings when you type the following:
help foo
or:
foo?
I find it super distracting to try to read help docs in ...
0
votes
3answers
34 views
How to get help of PyGTK methods?
in pygtk when I set the label mylabel = gtk.Label("Hello World!") I can get the string of label from it by mylabel.get() method. but in python interpreter I can't get the docstring of this method: ...
0
votes
0answers
63 views
Python's help() in Maya 2012 acting quite strange
This seems completely unrelated to the contents of the code, so I'll keep it generic.
I was adding a multiline docstring to the last class at the bottom of one of my modules - just something that ...
0
votes
1answer
80 views
epydoc hide some class functions?
I have some methods in my class which are only meant to be used by other methods of the class. I've prefixed their names with '_'. Can I hide those functions from epydoc? Is it a good idea?
Should I ...
0
votes
2answers
69 views
python: __doc__ doc trings is displayed as none
I coded a relatively simple script using python and also wrote doc strings for all the methods as follow:
def processData(rawData):
"""Proccessing raw data from weather station using Regex to get ...
0
votes
2answers
179 views
How to change docstring of TestCase Class in Python?
In Python 2.5 (Jython actually), for the UnitTest TestCase Class - there's is no SetUpClass method, and __init__ is not really acceptable (no refference to self).
When I try to change docstring inside ...
0
votes
2answers
85 views
how to change the test description of python (2.7) untitest
It seems that the unittest module has been changed a lot in Python 2.7
I have a test case:
class DemoTest(unittest.TestCase):
def test_foo(self):
"""Test foo"""
pass
The console ...
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 ...
0
votes
2answers
239 views
Python - do big doc strings waste memory?
I understand that in Python a string is simply an expression and a string by itself would be garbage collected immediately upon return of control to a code's caller, but...
Large class/method doc ...