diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-22 12:03:53 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-22 12:03:53 +0200 |
commit | 778234d544b3f58dd415aaf10679d15b01a5281f (patch) | |
tree | 57e86ae1ca34f7e3e658b1f078f705ba1b397c10 /lib/git/objects/base.py | |
parent | 91725f0fc59aa05ef68ab96e9b29009ce84668a5 (diff) | |
parent | c4f49fb232acb2c02761a82acc12c4040699685d (diff) | |
download | gitpython-778234d544b3f58dd415aaf10679d15b01a5281f.tar.gz |
Merge branch 'writetree'
Diffstat (limited to 'lib/git/objects/base.py')
-rw-r--r-- | lib/git/objects/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/objects/base.py b/lib/git/objects/base.py index 36bbccb2..90aa8ca2 100644 --- a/lib/git/objects/base.py +++ b/lib/git/objects/base.py @@ -21,6 +21,7 @@ class Object(LazyMixin): inst.data # byte string containing the whole data of the object """ NULL_HEX_SHA = '0'*40 + NULL_BIN_SHA = '\0'*20 TYPES = ("blob", "tree", "commit", "tag") __slots__ = ("repo", "sha", "size", "data" ) type = None # to be set by subclass |