diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-07 20:47:35 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-07 20:47:35 -0400 |
commit | 1f66cfbbce58b4b552b041707a12d437cc5f400a (patch) | |
tree | a71a31324498ab4eb4d673cdfb2d4b69209379ec /lib/git_python/diff.py | |
parent | 7156cece3c49544abb6bf7a0c218eb36646fad6d (diff) | |
download | gitpython-1f66cfbbce58b4b552b041707a12d437cc5f400a.tar.gz |
just more documentation fixes.
Diffstat (limited to 'lib/git_python/diff.py')
-rw-r--r-- | lib/git_python/diff.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/git_python/diff.py b/lib/git_python/diff.py index 9d2690be..185e1f57 100644 --- a/lib/git_python/diff.py +++ b/lib/git_python/diff.py @@ -2,6 +2,10 @@ import re import commit class Diff(object): + """ + A Diff contains diff information between two commits. + """ + def __init__(self, repo, a_path, b_path, a_commit, b_commit, a_mode, b_mode, new_file, deleted_file, diff): self.repo = repo self.a_path = a_path |