diff --git a/django-stubs-generated/apps/__init__.pyi b/django-stubs-generated/apps/__init__.pyi deleted file mode 100644 index 8270abf..0000000 --- a/django-stubs-generated/apps/__init__.pyi +++ /dev/null @@ -1,2 +0,0 @@ -from .config import AppConfig as AppConfig -from .registry import apps as apps diff --git a/django-stubs-generated/apps/config.pyi b/django-stubs-generated/apps/config.pyi deleted file mode 100644 index 9b2711b..0000000 --- a/django-stubs-generated/apps/config.pyi +++ /dev/null @@ -1,22 +0,0 @@ -from typing import Any, Iterator, Type - -from django.db.models.base import Model - -MODELS_MODULE_NAME: str - -class AppConfig: - name: str = ... - module: Any = ... - apps: None = ... - label: str = ... - verbose_name: str = ... - path: str = ... - models_module: None = ... - models: None = ... - def __init__(self, app_name: str, app_module: None) -> None: ... - @classmethod - def create(cls, entry: str) -> AppConfig: ... - def get_model(self, model_name: str, require_ready: bool = ...) -> Type[Model]: ... - def get_models(self, include_auto_created: bool = ..., include_swapped: bool = ...) -> Iterator[Type[Model]]: ... - def import_models(self) -> None: ... - def ready(self) -> None: ... diff --git a/django-stubs-generated/apps/registry.pyi b/django-stubs-generated/apps/registry.pyi deleted file mode 100644 index 9957237..0000000 --- a/django-stubs-generated/apps/registry.pyi +++ /dev/null @@ -1,39 +0,0 @@ -import collections -from typing import Any, Callable, List, Optional, Tuple, Type, Union - -from django.apps.config import AppConfig -from django.db.migrations.state import AppConfigStub -from django.db.models.base import Model - -from .config import AppConfig - -class Apps: - all_models: collections.defaultdict = ... - app_configs: collections.OrderedDict = ... - stored_app_configs: List[Any] = ... - apps_ready: bool = ... - loading: bool = ... - def __init__(self, installed_apps: Optional[Union[List[AppConfigStub], List[str], Tuple]] = ...) -> None: ... - models_ready: bool = ... - ready: bool = ... - def populate(self, installed_apps: Union[List[AppConfigStub], List[str], Tuple] = ...) -> None: ... - def check_apps_ready(self) -> None: ... - def check_models_ready(self) -> None: ... - def get_app_configs(self): ... - def get_app_config(self, app_label: str) -> AppConfig: ... - def get_models(self, include_auto_created: bool = ..., include_swapped: bool = ...) -> List[Type[Model]]: ... - def get_model(self, app_label: str, model_name: Optional[str] = ..., require_ready: bool = ...) -> Type[Model]: ... - def register_model(self, app_label: str, model: Type[Model]) -> None: ... - def is_installed(self, app_name: str) -> bool: ... - def get_containing_app_config(self, object_name: str) -> Optional[AppConfig]: ... - def get_registered_model(self, app_label: str, model_name: str) -> Type[Model]: ... - def get_swappable_settings_name(self, to_string: str) -> Optional[str]: ... - def set_available_apps(self, available: List[str]) -> None: ... - def unset_available_apps(self) -> None: ... - def set_installed_apps(self, installed: Union[List[str], Tuple[str]]) -> None: ... - def unset_installed_apps(self) -> None: ... - def clear_cache(self) -> None: ... - def lazy_model_operation(self, function: Callable, *model_keys: Any) -> None: ... - def do_pending_operations(self, model: Type[Model]) -> None: ... - -apps: Any diff --git a/django-stubs/conf/urls/i18n.pyi b/django-stubs/conf/urls/i18n.pyi new file mode 100644 index 0000000..532cb7d --- /dev/null +++ b/django-stubs/conf/urls/i18n.pyi @@ -0,0 +1,8 @@ +from typing import Any, List, Tuple, Callable + +from django.urls.resolvers import URLPattern + +def i18n_patterns(*urls: Any, prefix_default_language: bool = ...) -> List[List[URLPattern]]: ... +def is_language_prefix_patterns_used(urlconf: str) -> Tuple[bool, bool]: ... + +urlpatterns: List[Callable] diff --git a/django-stubs/conf/urls/static.pyi b/django-stubs/conf/urls/static.pyi new file mode 100644 index 0000000..bcad0db --- /dev/null +++ b/django-stubs/conf/urls/static.pyi @@ -0,0 +1,5 @@ +from typing import Any, Callable, List + +from django.urls.resolvers import URLPattern + +def static(prefix: str, view: Callable = ..., **kwargs: Any) -> List[URLPattern]: ...