diff options
author | 2012-03-01 19:41:46 +0100 | |
---|---|---|
committer | 2012-03-01 19:43:26 +0100 | |
commit | 5d7ee35eb23f193ec79a1a7b24ea87c6f1bc28b8 (patch) | |
tree | c90ab9489c5217151c1f1c716aea8fa39b303393 /pygithub3/services/users | |
parent | WIP on services.repos doc (diff) | |
download | python-github3-5d7ee35eb23f193ec79a1a7b24ea87c6f1bc28b8.tar.xz python-github3-5d7ee35eb23f193ec79a1a7b24ea87c6f1bc28b8.zip |
Complete services.repos doc
Also add Mimetypes doc
Diffstat (limited to 'pygithub3/services/users')
-rw-r--r-- | pygithub3/services/users/__init__.py | 1 | ||||
-rw-r--r-- | pygithub3/services/users/emails.py | 2 | ||||
-rw-r--r-- | pygithub3/services/users/followers.py | 4 | ||||
-rw-r--r-- | pygithub3/services/users/keys.py | 1 |
4 files changed, 0 insertions, 8 deletions
diff --git a/pygithub3/services/users/__init__.py b/pygithub3/services/users/__init__.py index c448319..29a8e1c 100644 --- a/pygithub3/services/users/__init__.py +++ b/pygithub3/services/users/__init__.py @@ -25,7 +25,6 @@ class User(Service): authenticated user. .. warning:: - If you aren't authenticated and call without user, it returns 403 :: diff --git a/pygithub3/services/users/emails.py b/pygithub3/services/users/emails.py index 084a29c..09f6683 100644 --- a/pygithub3/services/users/emails.py +++ b/pygithub3/services/users/emails.py @@ -8,7 +8,6 @@ class Emails(Service): """ Consume `Emails API <http://developer.github.com/v3/users/emails/>`_ .. warning:: - You must be authenticated for all requests """ @@ -26,7 +25,6 @@ class Emails(Service): :param list emails: Emails to add .. note:: - It rejects non-valid emails :: diff --git a/pygithub3/services/users/followers.py b/pygithub3/services/users/followers.py index d6969e2..5a8176d 100644 --- a/pygithub3/services/users/followers.py +++ b/pygithub3/services/users/followers.py @@ -19,7 +19,6 @@ class Followers(Service): authenticated user's followers .. warning:: - If you aren't authenticated and call without user, it returns 403 :: @@ -40,7 +39,6 @@ class Followers(Service): authenticated user's followings .. warning:: - If you aren't authenticated and call without user, it returns 403 :: @@ -65,7 +63,6 @@ class Followers(Service): :param str user: Username .. warning:: - You must be authenticated """ request = self.make_request('users.followers.follow', user=user) @@ -77,7 +74,6 @@ class Followers(Service): :param str user: Username .. warning:: - You must be authenticated """ request = self.make_request('users.followers.unfollow', user=user) diff --git a/pygithub3/services/users/keys.py b/pygithub3/services/users/keys.py index 996233c..2884881 100644 --- a/pygithub3/services/users/keys.py +++ b/pygithub3/services/users/keys.py @@ -8,7 +8,6 @@ class Keys(Service): """ Consume `Keys API <http://developer.github.com/v3/users/keys/>`_ .. warning:: - You must be authenticated for all requests """ |