Merge branch 'master' into topic/RewriteWithGeneratedCode

Conflicts:
	github/Github.py
	github/Requester.py
This commit is contained in:
Vincent Jacques
2012-05-26 10:08:07 +01:00
4 changed files with 26 additions and 7 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ import PaginatedList
from GithubObject import LazyCompletion, ImmediateCompletion
class Github( object ):
def __init__( self, login, password ):
self.__requester = Requester( login, password )
def __init__( self, login_or_token = None, password = None ):
self.__requester = Requester( login_or_token, password )
@property
def rate_limiting( self ):