mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-06 20:24:31 +08:00
16 lines
287 B
Python
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]: ... |