sphinx-autodoc-example/src/simple.py

9 lines
180 B
Python

__all__ = ["SIMPLE_CONST", "bar"]
SIMPLE_CONST = 2
def bar(a, b):
"""Returns whether :a: and :b: have passed the bar exam in their state."""
return a + b > SIMPLE_CONST