diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-22 22:14:02 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-22 22:16:54 +0200 |
commit | ea33fe8b21d2b02f902b131aba0d14389f2f8715 (patch) | |
tree | ce48feb6d2da2bed92240c0fbd2350e05f7b7519 /lib/git/objects | |
parent | 1496979cf7e9692ef869d2f99da6141756e08d25 (diff) | |
download | gitpython-ea33fe8b21d2b02f902b131aba0d14389f2f8715.tar.gz |
Index: Is now diffable and appears to properly implement diffing against other items as well as the working tree
Diff.Diffable: added callback allowing superclasses to preprocess diff arguments
Diff.Diff: added eq, ne and hash methods, string methods would be nice
Diffstat (limited to 'lib/git/objects')
-rw-r--r-- | lib/git/objects/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/objects/__init__.py b/lib/git/objects/__init__.py index 39e650b7..192750e3 100644 --- a/lib/git/objects/__init__.py +++ b/lib/git/objects/__init__.py @@ -2,6 +2,7 @@ Import all submodules main classes into the package space """ import inspect +from base import * from tag import * from blob import * from tree import * |