mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-04 12:00:16 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
__author__ = 'swenson'
|
|
|
|
import math
|
|
|
|
def example_function(x):
|
|
"""Compute the square root of x and return it."""
|
|
return math.sqrt(x) |