I have some functions like
f(x, propagation_speed=scipy.constants.c)
I run sphinx-apidoc
to generate documentation on them and them make html
to get final HTML data.
Alas, Sphinx expands the constants and gives me something like
f(x, propagation_speed=299792458.0)
Cannot I somehow disable the default values expansion in docstrings? Could I add something to conf.py
?