From d6dc8b73c3162ae734f6d824d6929793a8f177cb Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Thu, 19 Jan 2023 16:09:55 +0200 Subject: [PATCH] [3.15] Add SimpleRouter use_regex_path argument --- rest_framework-stubs/routers.pyi | 2 +- scripts/stubtest/allowlist_todo.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/rest_framework-stubs/routers.pyi b/rest_framework-stubs/routers.pyi index f29b7db01..41c2bbb72 100644 --- a/rest_framework-stubs/routers.pyi +++ b/rest_framework-stubs/routers.pyi @@ -43,7 +43,7 @@ class BaseRouter(metaclass=RenameRouterMethods): class SimpleRouter(BaseRouter): routes: list[Route | DynamicRoute] trailing_slash: str - def __init__(self, trailing_slash: bool = ...) -> None: ... + def __init__(self, trailing_slash: bool = ..., use_regex_path: bool = ...) -> None: ... def get_routes(self, viewset: type[ViewSetMixin]) -> list[Route]: ... def _get_dynamic_route(self, route: DynamicRoute, action: Any) -> Route: ... def get_method_map(self, viewset: type[ViewSetMixin], method_map: Mapping[str, str]) -> dict[str, str]: ... diff --git a/scripts/stubtest/allowlist_todo.txt b/scripts/stubtest/allowlist_todo.txt index 19c8e6464..e766a2877 100644 --- a/scripts/stubtest/allowlist_todo.txt +++ b/scripts/stubtest/allowlist_todo.txt @@ -152,7 +152,6 @@ rest_framework.generics.GenericAPIView.__class_getitem__ rest_framework.request.Request.__class_getitem__ rest_framework.response.Response.__class_getitem__ rest_framework.routers.BaseRouter.is_already_registered -rest_framework.routers.SimpleRouter.__init__ rest_framework.schemas.openapi.AutoSchema.get_field_name rest_framework.serializers.DecimalField.__init__ rest_framework.serializers.Field.__class_getitem__