Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/demo/test_py_module/test.py')
-rw-r--r--docs/demo/test_py_module/test.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/demo/test_py_module/test.py b/docs/demo/test_py_module/test.py
index f47b984..812544f 100644
--- a/docs/demo/test_py_module/test.py
+++ b/docs/demo/test_py_module/test.py
@@ -65,6 +65,7 @@ class Foo:
:type val2: int
:rtype: int
+ The parameters of this method are described in the parameter list.
"""
return val1 + val2
@@ -111,3 +112,23 @@ class Foo:
This is deprecated since 3.0
"""
return sum(kwargs.values()) / len(kwargs), a + b
+
+
+def add_numbers(a: int, b: int = 0) -> int:
+ """Add two numbers together
+
+ :param a: The first number
+ :param b: The second number
+
+ Here is some more text.
+ """
+ return a + b
+
+
+def subtract_numbers(a: int, b: int = 0) -> int:
+ """Subtract two numbers
+
+ :param a: The first number
+ :param b: The second number
+ """
+ return a - b