From 5f8c18be79c777df5ba10c8e03ea674683aff729 Mon Sep 17 00:00:00 2001 From: Scott Torborg Date: Sat, 12 Jun 2010 13:34:25 -0700 Subject: [PATCH] Add issue comments viewing to examples. --- README.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.rst b/README.rst index 44cb5d4..e760b7e 100644 --- a/README.rst +++ b/README.rst @@ -103,6 +103,12 @@ View an Issue >>> issue.title 'Should not be able to upload same version twice.' +View Comments on an Issue +------------------------- + >>> comments = github.issues.comments("ask/chishop", 5) + >>> comments[0].body + 'Fix merged into /ask branch.' + Open and Close Issues ---------------------