summaryrefslogtreecommitdiff
path: root/docs/topics/auth/customizing.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/auth/customizing.txt')
-rw-r--r--docs/topics/auth/customizing.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 78bee37a0f..bd0c074273 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -731,8 +731,6 @@ The following attributes and methods are available on any subclass of
.. method:: models.AbstractBaseUser.get_session_auth_fallback_hash()
- .. versionadded:: 4.1.8
-
Yields the HMAC of the password field using
:setting:`SECRET_KEY_FALLBACKS`. Used by ``get_user()``.
@@ -871,11 +869,6 @@ extend these forms in this manner::
model = CustomUser
fields = UserCreationForm.Meta.fields + ("custom_field",)
-.. versionchanged:: 4.2
-
- In older versions, :class:`~django.contrib.auth.forms.UserCreationForm`
- didn't save many-to-many form fields for a custom user model.
-
Custom users and :mod:`django.contrib.admin`
--------------------------------------------