Author: DrMeers
Date: 2010-12-03 18:50:49 -0600 (Fri, 03 Dec 2010)
New Revision: 14787

Modified:
   django/trunk/docs/topics/auth.txt
Log:
Fixed #14764 -- specified that a set is returned by User.get_..._permissions 
methods. Thanks MostAwesomeDude for the report.

Modified: django/trunk/docs/topics/auth.txt
===================================================================
--- django/trunk/docs/topics/auth.txt   2010-12-03 20:26:57 UTC (rev 14786)
+++ django/trunk/docs/topics/auth.txt   2010-12-04 00:50:49 UTC (rev 14787)
@@ -212,7 +212,7 @@
 
     .. method:: models.User.get_group_permissions(obj=None)
 
-        Returns a list of permission strings that the user has, through his/her
+        Returns a set of permission strings that the user has, through his/her
         groups.
 
         .. versionadded:: 1.2
@@ -222,7 +222,7 @@
 
     .. method:: models.User.get_all_permissions(obj=None)
 
-        Returns a list of permission strings that the user has, both through
+        Returns a set of permission strings that the user has, both through
         group and user permissions.
 
         .. versionadded:: 1.2

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to