module documentation

Undocumented

Class ​Abstract​User An abstract base class implementing a fully featured User model with admin-compliant permissions.
Class ​Anonymous​User Undocumented
Class ​Group Groups are a generic way of categorizing users to apply permissions, or some other label, to those users. A user can belong to any number of groups.
Class ​Permission The permissions system provides a way to assign permissions to specific users and groups of users.
Class ​Permissions​Mixin Add the fields and methods necessary to support the Group and Permission models using the ModelBackend.
Class ​User Users within the Django authentication system are represented by this model.
Class ​User​Manager No class docstring; 0/1 class variable, 1/4 method documented
Class ​Group​Manager The manager for the auth's Group model.
Class ​Permission​Manager Undocumented
Function ​_user​_get​_permissions Undocumented
Function ​_user​_has​_module​_perms A backend can raise PermissionDenied to short-circuit permission checking.
Function ​_user​_has​_perm A backend can raise PermissionDenied to short-circuit permission checking.
Function update​_last​_login A signal receiver which updates the last_login date for the user logging in.
def _user_get_permissions(user, obj, from_name):

Undocumented

def _user_has_module_perms(user, app_label):
A backend can raise PermissionDenied to short-circuit permission checking.
def _user_has_perm(user, perm, obj):
A backend can raise PermissionDenied to short-circuit permission checking.
def update_last_login(sender, user, **kwargs):
A signal receiver which updates the last_login date for the user logging in.