mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
14 lines
245 B
Cython
14 lines
245 B
Cython
# 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
|