summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/applications.txt10
1 files changed, 2 insertions, 8 deletions
diff --git a/docs/ref/applications.txt b/docs/ref/applications.txt
index 5d9db49140..eadf9895ca 100644
--- a/docs/ref/applications.txt
+++ b/docs/ref/applications.txt
@@ -184,22 +184,16 @@ Application registry
Returns ``True`` if the registry is fully populated.
-.. method:: apps.get_app_configs(only_with_models_module=False)
+.. method:: apps.get_app_configs()
Returns an iterable of :class:`~django.apps.AppConfig` instances.
- If only applications containing a models module are of interest, this method
- can be called with ``only_with_models_module=True``.
-
-.. method:: apps.get_app_config(app_label, only_with_models_module=False)
+.. method:: apps.get_app_config(app_label)
Returns an :class:`~django.apps.AppConfig` for the application with the
given ``app_label``. Raises :exc:`~exceptions.LookupError` if no such
application exists.
- If only applications containing a models module are of interest, this method
- can be called with ``only_with_models_module=True``.
-
.. method:: apps.has_app(app_name)
Checks whether an application with the given name exists in the registry.