Changeset 1221
- Timestamp:
- 11/13/05 17:33:05 (3 years ago)
- Files:
-
- django/trunk/django/parts/auth/anonymoususers.py (modified) (1 diff)
- django/trunk/docs/authentication.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/parts/auth/anonymoususers.py
r518 r1221 1 1 class AnonymousUser: 2 id = None 3 2 4 def __init__(self): 3 5 pass django/trunk/docs/authentication.txt
r1212 r1221 173 173 the ``django.models.auth.users.User`` interface, with these differences: 174 174 175 * ``id`` is always ``None``. 175 176 * ``is_anonymous()`` returns ``True`` instead of ``False``. 176 177 * ``has_perm()`` always returns ``False``.
