diff options
author | Mart Sõmermaa <mart.somermaa@cgi.com> | 2013-11-19 09:13:38 +0200 |
---|---|---|
committer | Mart Sõmermaa <mart.somermaa@cgi.com> | 2013-11-19 09:22:01 +0200 |
commit | 6705928406667ee010f448e41c14cfa63c263178 (patch) | |
tree | aa8846726826a70f6eaedef5ac5b59388db33ddf /gitlab.py | |
parent | 01ade72edf9d5dec27b5676c7fb05e9a995c775a (diff) | |
download | gitlab-6705928406667ee010f448e41c14cfa63c263178.tar.gz |
Fix comments.
Diffstat (limited to 'gitlab.py')
-rw-r--r-- | gitlab.py | 30 |
1 files changed, 17 insertions, 13 deletions
@@ -315,9 +315,9 @@ class Gitlab(object): If id is None, returns a list of hooks. - If id is an integer, test the matching hook. + If id is an integer, tests the matching hook. - If id is a dict, create a new object using attributes provided. The + If id is a dict, creates a new object using attributes provided. The object is NOT saved on the server. Use the save() method on the object to write it on the server. """ @@ -328,42 +328,46 @@ class Gitlab(object): If id is None, returns a list of projects. - If id is an integer, returns the matching project (or raise a + If id is an integer, returns the matching project (or raises a GitlabGetError if not found) - If id is a dict, create a new object using attributes provided. The + If id is a dict, creates a new object using attributes provided. The object is NOT saved on the server. Use the save() method on the object to write it on the server. """ return self._getListOrObject(Project, id, **kwargs) def Group(self, id=None, **kwargs): - """Creates/gets/lists groups(s) known by the GitLab server. + """Creates/gets/lists group(s) known by the GitLab server. - If id is None, returns a list of projects. + If id is None, returns a list of groups. - If id is an integer, returns the matching project (or raise a + If id is an integer, returns the matching group (or raises a GitlabGetError if not found) - If id is a dict, create a new object using attributes provided. The + If id is a dict, creates a new object using attributes provided. The object is NOT saved on the server. Use the save() method on the object to write it on the server. """ return self._getListOrObject(Group, id, **kwargs) def Issue(self, id=None, **kwargs): - """Lists issues(s) known by the GitLab server.""" + """Lists issues(s) known by the GitLab server. + + Does not support creation or getting a single issue unlike other + methods in this class yet. + """ return self._getListOrObject(Issue, id, **kwargs) def User(self, id=None, **kwargs): """Creates/gets/lists users(s) known by the GitLab server. - If id is None, returns a list of projects. + If id is None, returns a list of users. - If id is an integer, returns the matching project (or raise a + If id is an integer, returns the matching user (or raises a GitlabGetError if not found) - If id is a dict, create a new object using attributes provided. The + If id is a dict, creates a new object using attributes provided. The object is NOT saved on the server. Use the save() method on the object to write it on the server. """ @@ -374,7 +378,7 @@ class Gitlab(object): If id is None, returns a list of teams. - If id is an integer, returns the matching project (or raise a + If id is an integer, returns the matching team (or raises a GitlabGetError if not found) If id is a dict, create a new object using attributes provided. The |