I'm using Sphinx to generate documentation from code. Does anyone know if there is a way to control the formatting of floating point numbers generated from default arguments.
For example if I have the following function:
def f(x = 0.97):
return x+1
The generated documentation ends up looking like:
foo(x = 0.96999999999997)
Obviously this is a floating point precision issue, but is there a way to make the documentation not look so ugly?
You can override a function signature with the
.. autofunction::
directive. So to address your example, a function defined asfoo(x=0.97)
in modulebar
:And the resulting doc will use the signature provided instead of the interpreted version with the really long number.
You can do this equivalently with
.. autoclass::
and.. automethod::
and the like. This is usage is documented in "Options and advanced usage" in this part of the sphinx.ext.autodoc docs.I haven't used Sphinx so I am not sure this will work, but my assumption is that
repr()
is used to determine the format of the documentation. You can try subclassingfloat
with a custom__repr__
method that will return a nicer looking number to see if that helps: