From d99b7ef5777fdbd4f9a22a806c83c2895a40fa81 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sat, 29 Dec 2012 08:28:15 +0100 Subject: [PATCH] Mark urls to be completed --- generateDocstrings.py | 4 ++-- github/PaginatedList.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/generateDocstrings.py b/generateDocstrings.py index 9c842d14..61ceeac9 100755 --- a/generateDocstrings.py +++ b/generateDocstrings.py @@ -35,7 +35,7 @@ class Generator(): return None else: return [ - "This class represents " + className + "s as returned for example by http://developer.github.com/v3/" + "This class represents " + className + "s as returned for example by http://developer.github.com/v3/todo" ] def getMemberDocstring(self, className, memberName): @@ -49,7 +49,7 @@ class Generator(): ] elif memberName in classDescription.methods: return [ - ":calls: `" + classDescription.methods[memberName].verb + " " + classDescription.methods[memberName].url + " `_", + ":calls: `" + classDescription.methods[memberName].verb + " " + classDescription.methods[memberName].url + " `_", # ":auth. level: ?", ] + [ ":param " + parameterName + ": " + self.__formatType(parameterType) for parameterName, parameterType in classDescription.methods[memberName].parameters.items() diff --git a/github/PaginatedList.py b/github/PaginatedList.py index b3c986c9..20d8447a 100644 --- a/github/PaginatedList.py +++ b/github/PaginatedList.py @@ -70,7 +70,7 @@ class PaginatedListBase: class PaginatedList(PaginatedListBase): """ - This class abstracts the `pagination of the API `_. + This class abstracts the `pagination of the API `_. You can simply enumerate through instances of this class: diff --git a/setup.py b/setup.py index 4452a4e5..70a4d980 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import setuptools import textwrap -version = "1.10.0" +version = "1.10.1", if __name__ == "__main__": setuptools.setup(