sphinx-autoapi/tests/toctreeexample/example/example.py

9 lines
141 B
Python
Raw Normal View History

2019-01-27 05:20:45 +00:00
__author__ = "swenson"
import math
2019-01-27 05:20:45 +00:00
def example_function(x):
"""Compute the square root of x and return it."""
2019-01-27 05:20:45 +00:00
return math.sqrt(x)