I'm trying to document my python code with Sphinx, but I found a problem documenting some data instantiated with exec; I have a table with names and values that I need to instantiate.
So in my code I wrote something like:
my_vars = [{'name': 'var1', 'value': 'first'},
{'name': 'var2', 'value': 'second'}]
for var in my_vars:
exec("{var[name]} = '{var[value]}'".format(var=var))
The problem is with Sphinx: since I'd like to maintain just the source code I used autodata, the corrisponding lines from my .rst file are:
.. autodata:: mymodule.var1
.. autodata:: mymodule.var2
that when built gave me this:
mymodule.var1 = 'first'
str(string[, encoding[, errors]]) -> str
Create a new string object from the given encoded string.
encoding defaults to the current default string encoding.
errors can be ‘strict’, ‘replace’ or ‘ignore’ and defaults to ‘strict’.
mymodule.var2 = 'second'
str(string[, encoding[, errors]]) -> str
Create a new string object from the given encoded string.
encoding defaults to the current default string encoding.
errors can be ‘strict’, ‘replace’ or ‘ignore’ and defaults to ‘strict’.
I think autodata goes looking into var1.__doc__ for a doc string and there found str.__doc__ (that is the message shown before).
I really don't know what to do and I'm searching for a way of not showing that ugly doc string (but still maintaining mymodule.var1 = 'first').
Or maybe even better a way to show my own doc, like: var1 is this. (but I wouldn't know where to put it).