sphinx/tests/roots/test-ext-autodoc/target/cython.pyx

13 lines
215 B
Cython
Raw Normal View History

# cython: binding=True
def foo(x: int, *args, y: str, **kwargs):
"""Docstring."""
class Class:
"""Docstring."""
def meth(self, name: str, age: int = 0) -> None:
"""Docstring."""
pass