diff --git a/README.rst b/README.rst index e5f4f671..51e5d528 100644 --- a/README.rst +++ b/README.rst @@ -72,6 +72,10 @@ Github API v3 URLs not (yet) covered by PyGithub * should be called in method ``Github.get_repos`` +* ``/search/code`` (GET) +* ``/search/issues`` (GET) +* ``/search/repositories`` (GET) +* ``/search/users`` (GET) * ``/users/:user/following/:target_user`` (GET) * should be called in method ``NamedUser.has_in_following`` diff --git a/github/MainClass.py b/github/MainClass.py index d11521c7..787ce791 100644 --- a/github/MainClass.py +++ b/github/MainClass.py @@ -224,7 +224,7 @@ class Github(object): def legacy_search_repos(self, keyword, language=github.GithubObject.NotSet): """ - :calls: `GET /legacy/repos/search/:keyword `_ + :calls: `GET /legacy/repos/search/:keyword `_ :param keyword: string :param language: string :rtype: :class:`github.PaginatedList.PaginatedList` of :class:`github.Repository.Repository` @@ -243,7 +243,7 @@ class Github(object): def legacy_search_users(self, keyword): """ - :calls: `GET /legacy/user/search/:keyword `_ + :calls: `GET /legacy/user/search/:keyword `_ :param keyword: string :rtype: :class:`github.PaginatedList.PaginatedList` of :class:`github.NamedUser.NamedUser` """ @@ -259,7 +259,7 @@ class Github(object): def legacy_search_user_by_email(self, email): """ - :calls: `GET /legacy/user/email/:email `_ + :calls: `GET /legacy/user/email/:email `_ :param email: string :rtype: :class:`github.NamedUser.NamedUser` """ diff --git a/github/Repository.py b/github/Repository.py index ae802612..4361cf0a 100644 --- a/github/Repository.py +++ b/github/Repository.py @@ -1528,7 +1528,7 @@ class Repository(github.GithubObject.CompletableGithubObject): def legacy_search_issues(self, state, keyword): """ - :calls: `GET /legacy/issues/search/:owner/:repository/:state/:keyword `_ + :calls: `GET /legacy/issues/search/:owner/:repository/:state/:keyword `_ :param state: "open" or "closed" :param keyword: string :rtype: :class:`github.PaginatedList.PaginatedList` of :class:`github.Issue.Issue`