Finish .../stats/... (#203)

This commit is contained in:
Vincent Jacques
2013-11-17 10:16:59 -08:00
parent 1eba8a3f05
commit c6671c6466
8 changed files with 270 additions and 10 deletions
+4
View File
@@ -172,6 +172,10 @@ class GithubObject(object):
def _makeListOfStringsAttribute(value):
return GithubObject.__makeSimpleListAttribute(value, (str, unicode))
@staticmethod
def _makeListOfIntsAttribute(value):
return GithubObject.__makeSimpleListAttribute(value, int)
@staticmethod
def _makeListOfListOfStringsAttribute(value):
return GithubObject.__makeSimpleListAttribute(value, list)