From e4315aa0a5224c240a2626fe7bf0ace0cb708e31 Mon Sep 17 00:00:00 2001 From: djmattyg007 Date: Sat, 23 Aug 2014 10:56:48 +1000 Subject: [PATCH] Add note about default behaviour of Repository.listall_branches() --- src/repository.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/repository.c b/src/repository.c index a4a4b1d..6f40dfd 100644 --- a/src/repository.c +++ b/src/repository.c @@ -968,7 +968,8 @@ out: PyDoc_STRVAR(Repository_listall_branches__doc__, "listall_branches([flags]) -> [str, ...]\n" "\n" - "Return a tuple with all the branches in the repository."); + "Return a tuple with all the branches in the repository.\n" + "By default, it returns all local branches."); PyObject * Repository_listall_branches(Repository *self, PyObject *args)