mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 12:44:29 +08:00
10 lines
188 B
Python
10 lines
188 B
Python
from typing import Callable
|
|
|
|
|
|
def get_view_name(view_func: Callable) -> str: ...
|
|
|
|
|
|
def replace_named_groups(pattern: str) -> str: ...
|
|
|
|
|
|
def replace_unnamed_groups(pattern: str) -> str: ... |