aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/users
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-03-01 19:41:46 +0100
committerDavid Medina <davidmedina9@gmail.com>2012-03-01 19:43:26 +0100
commit5d7ee35eb23f193ec79a1a7b24ea87c6f1bc28b8 (patch)
treec90ab9489c5217151c1f1c716aea8fa39b303393 /pygithub3/services/users
parentWIP on services.repos doc (diff)
downloadpython-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__.py1
-rw-r--r--pygithub3/services/users/emails.py2
-rw-r--r--pygithub3/services/users/followers.py4
-rw-r--r--pygithub3/services/users/keys.py1
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
"""