diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/cython.pyx')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/cython.pyx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/cython.pyx b/tests/roots/test-ext-autodoc/target/cython.pyx new file mode 100644 index 0000000..5d0329a --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/cython.pyx @@ -0,0 +1,13 @@ +# cython: binding=True +# cython: language_level=3str + +def foo(x: int, *args, y: str, **kwargs): + """Docstring.""" + + +class Class: + """Docstring.""" + + def meth(self, name: str, age: int = 0) -> None: + """Docstring.""" + pass |