Files
django-stubs/django/utils/inspect.pyi
2018-07-29 18:27:46 +03:00

16 lines
287 B
Python

from typing import (
Callable,
List,
)
def func_accepts_kwargs(func: Callable) -> bool: ...
def func_accepts_var_args(func: Callable) -> bool: ...
def func_supports_parameter(func: Callable, parameter: str) -> bool: ...
def get_func_args(func: Callable) -> List[str]: ...