Package django :: Package contrib :: Package auth :: Module models :: Class AnonymousUser
[hide private]
[frames] | no frames]

Class AnonymousUser

source code

object --+
         |
        AnonymousUser

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__unicode__(self) source code
 
__str__(self)
str(x)
source code
 
__eq__(self, other) source code
 
__ne__(self, other) source code
 
__hash__(self)
hash(x)
source code
 
save(self) source code
 
delete(self) source code
 
set_password(self, raw_password) source code
 
check_password(self, raw_password) source code
 
_get_groups(self) source code
 
groups(self) source code
 
_get_user_permissions(self) source code
 
user_permissions(self) source code
 
has_perm(self, perm) source code
 
has_module_perms(self, module) source code
 
get_and_delete_messages(self) source code
 
is_anonymous(self) source code
 
is_authenticated(self) source code

Inherited from object: __delattr__, __getattribute__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Class Variables [hide private]
  id = None
  username = ''
  is_staff = False
  is_active = False
  is_superuser = False
  _groups = EmptyManager()
  _user_permissions = EmptyManager()
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__hash__(self)
(Hashing function)

source code 

hash(x)

Overrides: object.__hash__
(inherited documentation)