mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-02 11:51:10 +00:00
Create documentation and method stubs for issue #49 (legacy search api)
This commit is contained in:
@@ -64,3 +64,12 @@ class Github( object ):
|
||||
headers,
|
||||
data
|
||||
)
|
||||
|
||||
def search_repos( self, keyword ):
|
||||
pass
|
||||
|
||||
def search_users( self, keyword ):
|
||||
pass
|
||||
|
||||
def search_user_by_email( self, email ):
|
||||
pass
|
||||
|
||||
@@ -1002,6 +1002,9 @@ class Repository( GithubObject.GithubObject ):
|
||||
None
|
||||
)
|
||||
|
||||
def search_issues( self, state, keyword ):
|
||||
pass
|
||||
|
||||
@property
|
||||
def _identity( self ):
|
||||
return self.owner.login + "/" + self.name
|
||||
|
||||
Reference in New Issue
Block a user