From bca0cb7f507d6a21a652307737a57057692d2f79 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 8 Oct 2009 09:57:36 +0200 Subject: Improved documentation on Actor and Blob --- lib/git/actor.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/git/actor.py') diff --git a/lib/git/actor.py b/lib/git/actor.py index cdcc02f8..bc1a4479 100644 --- a/lib/git/actor.py +++ b/lib/git/actor.py @@ -7,6 +7,9 @@ import re class Actor(object): + """Actors hold information about a person acting on the repository. They + can be committers and authors or anything with a name and an email as + mentioned in the git log entries.""" def __init__(self, name, email): self.name = name self.email = email -- cgit v1.2.3